CodeAccessPermission::FromXml Method
When overridden in a derived class, reconstructs a security object with a specified state from an XML encoding.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- elem
- Type: System.Security::SecurityElement
The XML encoding to use to reconstruct the security object.
Implements
ISecurityEncodable::FromXml(SecurityElement)| Exception | Condition |
|---|---|
| ArgumentNullException | The elem parameter is nullptr. |
| ArgumentException | The elem parameter does not contain the XML encoding for an instance of the same type as the current instance. -or- The version number of the elem parameter is not supported. |
Custom code that extends security objects needs to implement the ToXml and FromXml methods to make the objects security-encodable.
Notes to Inheritors:You must override this method in a derived class.
The following code example shows an override of the FromXml method. This code example is part of a larger example provided for the CodeAccessPermission class.
public: virtual void FromXml( SecurityElement^ e ) override { // The following code for unrestricted permission is only included as an example for // permissions that allow the unrestricted state. It is of no value for this permission. String^ elUnrestricted = e->Attribute("Unrestricted"); if ( nullptr != elUnrestricted ) { m_Unrestricted = Boolean::Parse( elUnrestricted ); return; } String^ elName = e->Attribute("Name"); m_Name = elName == nullptr ? nullptr : elName; }
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.