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 InheritorsYou 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 SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.