XmlDsigEnvelopedSignatureTransform.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 as transform-specific content of a <Transform>
element and configures the internal state of the current XmlDsigEnvelopedSignatureTransform 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 to load into the current XmlDsigEnvelopedSignatureTransform object.
Examples
The following code example demonstrates how to call the LoadInnerXml method using the specified XmlNodeList object to configure the current XmlDsigEnvelopedSignatureTransform object. This code example is part of a larger example provided for the XmlDsigEnvelopedSignatureTransform class.
// An enveloped signature has no inner XML elements
secondTransform->LoadInnerXml(xmlDoc->SelectNodes("//."));
// An enveloped signature has no inner XML elements
secondTransform.LoadInnerXml(xmlDoc.SelectNodes("//."));
' An enveloped signature has no inner XML elements
secondTransform.LoadInnerXml(xmlDoc.SelectNodes("//."))
Remarks
Because no transform-specific content is defined for XmlDsigEnvelopedSignatureTransform, a call to this method does not change the state of the transform.