Extract a payload from a signed document.

Namespace: Nehta.VendorLibrary.SM.SMD
Assembly: Nehta.VendorLibrary.SM.SMD (in Nehta.VendorLibrary.SM.SMD.dll) Version: 1.0.5.0 (1.0.5.0)

Syntax

C#
public static XmlDocument XspGetPayloadFromSignedDocument(
	this XmlDocument signedDocument
)
Visual Basic
<ExtensionAttribute> _
Public Shared Function XspGetPayloadFromSignedDocument ( _
	signedDocument As XmlDocument _
) As XmlDocument
Visual C++
[ExtensionAttribute]
public:
static XmlDocument^ XspGetPayloadFromSignedDocument(
	XmlDocument^ signedDocument
)

Parameters

signedDocument
Type: System.Xml..::..XmlDocument
The signed XML document to extract the payload from.

Return Value

The XML document containing the payload.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type XmlDocument. When you use instance method syntax to call this method, omit the first parameter. For more information, see or .

See Also