ISecurityEncodable.ToXml Methode

Definition

Erstellt eine XML-Codierung des Sicherheitsobjekts und des aktuellen Zustands.

public:
 System::Security::SecurityElement ^ ToXml();
public System.Security.SecurityElement? ToXml();
public System.Security.SecurityElement ToXml();
abstract member ToXml : unit -> System.Security.SecurityElement
Public Function ToXml () As SecurityElement

Gibt zurück

Eine XML-Codierung des Sicherheitsobjekts, einschließlich aller Statusinformationen.

Beispiele

Im folgenden Codebeispiel wird die Implementierung der FromXml Methode veranschaulicht. Dieses Codebeispiel ist Teil eines größeren Beispiels, das für die ISecurityEncodable Klasse bereitgestellt wird.

// Produce XML from the permission's fields.
public override SecurityElement ToXml()
{
    // These first three lines create an element with the required format.
    SecurityElement e = new SecurityElement("IPermission");
    // Replace the double quotation marks ("") with single quotation marks ('')
    // to remain XML compliant when the culture is not neutral.
    e.AddAttribute("class", GetType().AssemblyQualifiedName.Replace('\"', '\''));
    e.AddAttribute("version", "1");

    if (!m_specifiedAsUnrestricted)
        e.AddAttribute("Flags", Enum.Format(typeof(SoundPermissionState), m_flags, "G"));
    else
        e.AddAttribute("Unrestricted", "true");
    return e;
}
' Produce XML from the permission's fields.
Public Overrides Function ToXml() As SecurityElement
    ' These first three lines create an element with the required format.
    Dim e As New SecurityElement("IPermission")
    ' Replace the double quotation marks ("") with single quotation marks ('')
    ' to remain XML compliant when the culture is not neutral.
    e.AddAttribute("class", [GetType]().AssemblyQualifiedName.Replace(ControlChars.Quote, "'"c))
    e.AddAttribute("version", "1")

    If Not m_specifiedAsUnrestricted Then
        e.AddAttribute("Flags", [Enum].Format(GetType(SoundPermissionState), m_flags, "G"))
    Else
        e.AddAttribute("Unrestricted", "true")
    End If
    Return e

End Function 'ToXml

Hinweise

Benutzerdefinierter Code, der Sicherheitsobjekte erweitert, muss die ToXml Und-Methoden FromXml implementieren, um die Objekte sicherheitssicher zu gestalten.

Gilt für: