CodeGroup.ToXml Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates an XML encoding of the security object and its current state.
Overloads
ToXml() |
Creates an XML encoding of the security object and its current state. |
ToXml(PolicyLevel) |
Creates an XML encoding of the security object, its current state, and the policy level within which the code exists. |
ToXml()
- Source:
- CodeGroup.cs
- Source:
- CodeGroup.cs
- Source:
- CodeGroup.cs
- Source:
- CodeGroup.cs
Creates an XML encoding of the security object and its current state.
public:
System::Security::SecurityElement ^ ToXml();
public System.Security.SecurityElement ToXml ();
member this.ToXml : unit -> System.Security.SecurityElement
Public Function ToXml () As SecurityElement
Returns
An XML encoding of the security object, including any state information.
Notes to Inheritors
FromXml(SecurityElement) and ToXml() cannot be overridden. If you need to change the way in which your code group implementation handles XML, override the ParseXml(SecurityElement, PolicyLevel) and CreateXml(SecurityElement, PolicyLevel) methods.
Applies to
ToXml(PolicyLevel)
- Source:
- CodeGroup.cs
- Source:
- CodeGroup.cs
- Source:
- CodeGroup.cs
- Source:
- CodeGroup.cs
Creates an XML encoding of the security object, its current state, and the policy level within which the code exists.
public:
System::Security::SecurityElement ^ ToXml(System::Security::Policy::PolicyLevel ^ level);
public System.Security.SecurityElement ToXml (System.Security.Policy.PolicyLevel level);
member this.ToXml : System.Security.Policy.PolicyLevel -> System.Security.SecurityElement
Public Function ToXml (level As PolicyLevel) As SecurityElement
Parameters
- level
- PolicyLevel
The policy level within which the code group exists.
Returns
An XML encoding of the security object, including any state information.
Remarks
The policy level context is provided for resolution of named permission sets.
Notes to Inheritors
FromXml(SecurityElement) and ToXml() cannot be overridden. If you need to change the way in which your code group implementation handles XML, override the ParseXml(SecurityElement, PolicyLevel) and CreateXml(SecurityElement, PolicyLevel) methods.