SignedXml.SignatureValue Property

Definition

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

Byte[]

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.

Applies to