Discuss this help topic in SecureBlackbox Forum

TElXMLGenericTimestamp.AddTimestampData

TElXMLGenericTimestamp     See also     


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


Adds data to be timestamped.

Declaration

[C#]
    void AddTimestampData(byte[] Data);
    void AddTimestampData(TElXMLDOMNode Node);
    void AddTimestampData(TElXMLReference Ref);

[VB.NET]
    Sub AddTimestampData(ByVal Data As Byte())
    Sub AddTimestampData(ByVal Node As TElXMLDOMNode)
    Sub AddTimestampData(ByVal Ref As TElXMLReference)

[Pascal]
    procedure AddTimestampData(Data : ByteArray);
    procedure AddTimestampData(Node : TElXMLDOMNode);

[C++]
    void AddTimestampData(const std::vector<uint8_t> &Data);
    void AddTimestampData(const TElXMLDOMNode &Node);
    void AddTimestampData(const TElXMLDOMNode *Node);
    void AddTimestampData(const TElXMLReference &Ref);
    void AddTimestampData(const TElXMLReference *Ref);

[PHP]
    void AddTimestampData(array of byte|string|NULL $Data)
    void AddTimestampData(TElXMLDOMNode $Node)
    void AddTimestampData(TElXMLReference $Ref)

[Java]
    void addTimestampData(TElXMLDOMNode Node);
    void addTimestampData(TElXMLReference Ref);
    void addTimestampData(byte[] Data);

Parameters

  • Data - piece of raw data to be timestamped
  • Node - XML node to be timestamped
  • Ref - ...

Description

    Call this method to add a piece of raw data (Data parameter) or an XML node (Node parameter) to the data to be timestamped.

See also:     Timestamp    

Discuss this help topic in SecureBlackbox Forum