Discuss this help topic in SecureBlackbox Forum

TElCustomArtifactStorage.Add

TElCustomArtifactStorage     


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


Adds a new item to the storage.

Declaration

[C#]
    bool Add(byte[] Handle, string Body);

[VB.NET]
    Function Add(ByVal Handle As Byte(), ByVal Body As String) As Boolean

[Pascal]
    function Add(const Handle : ByteArray; const Body : string) : boolean; virtual;

[C++]
    bool Add(const std::vector<uint8_t> &Handle, const std::string &Body);

[PHP]
    bool Add(array of byte|string|NULL $Handle, string $Body)

[Java]
    boolean add(byte[] Handle, String Body);

Parameters

  • Handle - a reference to SAML message (the artifact).
  • Body - SAML message body.

Return value

    Returns

Description

    Use this method to add a new item to the storage.

Discuss this help topic in SecureBlackbox Forum