Discuss this help topic in SecureBlackbox Forum

TElMessagePart.Data

TElMessagePart     See also     


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


Contains loaded data in binary representation.

Declaration

[C#]
    byte[] Data;

[VB.NET]
    Property Data As Byte()

[Pascal]
    property Data : TBytes;

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

[PHP]
    string get_Data()
    void set_Data(array of byte|string|NULL $Value)

[Java]
    byte[] getData();
    int getData(TSBString wsData);
    int getData(TByteArrayConst Buffer, TSBInteger BufferSize);
    void setData(TElStream Stream, int DataSize, boolean bMakeCopy);
    void setData(byte[] value);
    void setData(byte[] Buffer, int Offset, int Count);
    void setData(String wsData);

Parameters

  • wsData -
  • Buffer -
  • BufferSize -
  • Stream -
  • DataSize -
  • bMakeCopy -
  • value -
  • Offset -
  • Count -

Description

    Use this property to access loaded data. If data have not been loaded see DataSize property.

See also:     DataSize     DataStream    

Discuss this help topic in SecureBlackbox Forum