Signature.SignatureBlockXmlNode Property
Gets the XML node corresponding a digital signature.
Namespace: Microsoft.Office.Interop.InfoPath.SemiTrust
Assembly: Microsoft.Office.Interop.InfoPath.SemiTrust (in Microsoft.Office.Interop.InfoPath.SemiTrust.dll)
Syntax
'Declaration
ReadOnly Property SignatureBlockXmlNode As IXMLDOMNode
Get
'Usage
Dim instance As Signature
Dim value As IXMLDOMNode
value = instance.SignatureBlockXmlNode
IXMLDOMNode SignatureBlockXmlNode { get; }
Property Value
Type: Microsoft.Office.Interop.InfoPath.SemiTrust.IXMLDOMNode
Remarks
Important
This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.
Examples
In the following example, the XML of the SignatureBlockXmlNode property of the SignatureObject object is displayed in a message box:
public void DisplaySignatureProperties()
{
SignatureObject mySignature = thisXDocument.SignedDataBlocks[0].Signatures[0];
IXMLDOMNode signatureNode = mySignature.SignatureBlockXmlNode;
thisXDocument.UI.Alert("Digital signature XML block: \n" + signatureNode.xml);
}