SignedXml.SignatureValue Property
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.
Gets the signature value of the current SignedXml object.
public:
property cli::array <System::Byte> ^ SignatureValue { cli::array <System::Byte> ^ get(); };
public byte[]? SignatureValue { get; }
public byte[] SignatureValue { get; }
member this.SignatureValue : byte[]
Public ReadOnly Property SignatureValue As Byte()
Property Value
A byte array that contains the signature value of the current SignedXml object.
Remarks
The SignatureValue property represents the <SignatureValue>
element of an XML digital signature using an array of bytes contained within the property. The <SignatureValue>
element is a subelement of the <Signature>
element.
Use the SignatureValue property to retrieve the value of the XML digital signature. This property is automatically populated when you make a successful call to the ComputeSignature method.
For more information about the <SignatureValue>
element, see the XMLDSIG specification.