Discuss this help topic in SecureBlackbox Forum

TElXMLReference.DigestValue

TElXMLReference     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


This property contains the calculated digest.

Declaration

[C#]
    byte[] DigestValue;

[VB.NET]
    Property DigestValue As Byte()

[Pascal]
    property DigestValue : ByteArray; {array of byte}

[C++]
    void get_DigestValue(std::vector<uint8_t> &OutResult);
    void set_DigestValue(const std::vector<uint8_t> &Value);

[PHP]
    string get_DigestValue()
    void set_DigestValue(array of byte|string|NULL $Value)

[Java]
    byte[] getDigestValue();
    void setDigestValue(byte[] Value);

Description

    Use this property to get or set the value of the digest, calculated over the referenced data.

    This property is optional and should be set if you don't provide the actual data via URIData or URINode. If the data is set, then you don't need to set DigestValue since it will be calculated automatically.

See also:     UpdateDigestValue     DigestMethod     URIData     URINode    

Discuss this help topic in SecureBlackbox Forum