DataProtectionPermission::ToXml Method ()

 

Creates an XML encoding of the permission and its current state.

Namespace:   System.Security.Permissions
Assembly:  System.Security (in System.Security.dll)

public:
virtual SecurityElement^ ToXml() override

Return Value

Type: System.Security::SecurityElement^

An XML encoding of the permission, including state information.

Use the FromXml method to restore the state information from a SecurityElement.

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

System_CAPS_noteNote

The code example is intended to show the behavior of the method, not to demonstrate its use. In general, the methods of permission classes are used by the security infrastructure; they are not typically used in applications.

Console::WriteLine( "Using an XML round trip to reset the fourth "
"permission." );
sp4->FromXml( sp2->ToXml() );
rc = sp4->Equals( sp2 );
Console::WriteLine( "Does the XML round trip result equal the "
"original permission? {0}", (rc ? (String^)"Yes" : "No") );

.NET Framework
Available since 2.0
Return to top
Show: