Discuss this help topic in SecureBlackbox Forum

TElDCEncoding.Decode

TElDCEncoding     See also     


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


Performs decoding operation.

Declaration

[C#]
    void Decode(TElDCNode Root, System.IO.Stream Stream, int Count);

[VB.NET]
    Sub Decode(ByVal Root As TElDCNode, ByVal Stream As System.IO.Stream, ByVal Count As Integer)

[Pascal]
    procedure Decode(Root : TElDCNode; Stream : TStream; Count : integer); virtual;

[C++]
    void Decode(TElDCNode &Root, TStream &Stream, int32_t Count);
    void Decode(TElDCNode *Root, TStream *Stream, int32_t Count);

[PHP]
    void Decode(TElDCNode $Root, TStream $Stream, integer $Count)

[Java]
    void decode(TElDCNode Root, TElStream Stream, int Count);

Parameters

  • Root - The root DC node for decoded tree.
  • Stream - The stream with encoded information.
  • Count - Number of bytes to be read from the stream.

Description

    This decodes method data from stream to a DC node.

See also:     Encode    

Discuss this help topic in SecureBlackbox Forum