XmlDecryptionTransform.LoadInnerXml(XmlNodeList) 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.
Parses the specified XmlNodeList object as transform-specific content of a <Transform>
element and configures the internal state of the current XmlDecryptionTransform object to match the <Transform>
element.
public:
override void LoadInnerXml(System::Xml::XmlNodeList ^ nodeList);
public override void LoadInnerXml (System.Xml.XmlNodeList nodeList);
override this.LoadInnerXml : System.Xml.XmlNodeList -> unit
Public Overrides Sub LoadInnerXml (nodeList As XmlNodeList)
Parameters
- nodeList
- XmlNodeList
An XmlNodeList object that specifies transform-specific content for the current XmlDecryptionTransform object.
Exceptions
The nodeList
parameter is null
.
-or-
The Uniform Resource Identifier (URI) value of an XmlNode object in nodeList
was not found.
-or-
The length of the URI value of an XmlNode object in nodeList
is 0.
-or-
The first character of the URI value of an XmlNode object in nodeList
is not '#'.
Remarks
This method is used to process subelements of a <Transform>
element.