Discuss this help topic in SecureBlackbox Forum

TElSAMLArtifact.SaveToBuffer

TElSAMLArtifact     See also     


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


Saves the artifact string.

Declaration

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

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

[Pascal]
    procedure SaveToBuffer(var Buf : ByteArray; var Size : integer);

[C++]
    void SaveToBuffer(std::vector<uint8_t> &Buf, int32_t &Size);

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

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

Parameters

  • Buf - the buffer where the artifact should be saved.
  • Size - the number of bytes in the artifact string.

Description

Use this method to get the artifact string.

See also:     LoadFromBuffer    

Discuss this help topic in SecureBlackbox Forum