Get the digest values from a signed XML 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 IList<byte[]> XspGetDigestValues(
	this XmlDocument signedDocument
)
Visual Basic
<ExtensionAttribute> _
Public Shared Function XspGetDigestValues ( _
	signedDocument As XmlDocument _
) As IList(Of Byte())
Visual C++
[ExtensionAttribute]
public:
static IList<array<unsigned char>^>^ XspGetDigestValues(
	XmlDocument^ signedDocument
)

Parameters

signedDocument
Type: System.Xml..::..XmlDocument
The signed XML document.

Return Value

A list of digest values.

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