PermissionSet.ToXml Method

Definition

Creates an XML encoding of the security object and its current state.

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

Returns

An XML encoding of the security object, including any state information.

Implements

Examples

The following code example shows the use of the ToXml method. This code example is part of a larger example provided for the PermissionSet class.

// Display result of ToXml and FromXml operations.
PermissionSet^ ps6 = gcnew PermissionSet( PermissionState::None );
ps6->FromXml( ps5->ToXml() );
Console::WriteLine( "Result of ToFromXml = {0}\n", ps6 );
// Display result of ToXml and FromXml operations.
PermissionSet ps6 = new PermissionSet(PermissionState.None);
ps6.FromXml(ps5.ToXml());
Console.WriteLine("Result of ToFromXml = " + ps6.ToString() + "\n");
' Display result of ToXml and FromXml operations.
Dim ps6 As New PermissionSet(PermissionState.None)
ps6.FromXml(ps5.ToXml())
Console.WriteLine("Result of ToFromXml = " & ps6.ToString() & ControlChars.Lf)

Applies to