Discuss this help topic in SecureBlackbox Forum

TElXMLReference.URIData

TElXMLReference     See also     


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


This property contains the referenced external data.

Declaration

[C#]
    byte[] URIData;

[VB.NET]
    Property URIData As Byte()

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

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

[PHP]
    string get_URIData()
    void set_URIData(array of byte|string|NULL $Value)

[Java]
    byte[] getURIData();
    void setURIData(byte[] Value);

Description

    Use this property to specify the external data, referenced by URI.

    This property is optional and should be set if you reference the external data via URI property. If you use URINode to reference the XML, then you don't need to set URIData. Also, you can calculate DigestValue yourself and in this case URIData is not necessary too.

See also:     DigestValue     URI     URINode    

Discuss this help topic in SecureBlackbox Forum