Discuss this help topic in SecureBlackbox Forum

TElLDAPMessage.SaveToBuffer

TElLDAPMessage     


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


Saves message in a memory buffer.

Declaration

[C#]
    void SaveToBuffer(ref byte[] Buf, int StartIndex, ref int Size);

[VB.NET]
    Sub SaveToBuffer(ByRef Buf As Byte(), ByVal StartIndex As Integer, ByRef Size As Integer)

[Pascal]
    procedure SaveToBuffer(Buf : Pointer; var Size : Integer);

[C++]
    void SaveToBuffer(void * Buf, int32_t &Size);

[PHP]
    void SaveToBuffer(TSBPointer|array of byte|string|NULL $Buf, integer &$Size)

[Java]
    void saveToBuffer(byte[][] Buf, int StartIndex, int[] Size);

Parameters

  • Buf - buffer where to save the message
  • Size - number of bytes saved into the buffer
  • StartIndex - position in the buffer where to start saving

Description

    Call this method to save the message to a memory buffer.

Discuss this help topic in SecureBlackbox Forum