Discuss this help topic in SecureBlackbox Forum

TElSAMLBinding.LoadArtifact

TElSAMLBinding     See also     


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


Extracts the artifact string from a SAML message.

Declaration

[C#]
    byte[] LoadArtifact(string Artifact);

[VB.NET]
    Function LoadArtifact(ByVal Artifact As String) As Byte()

[Pascal]
    function LoadArtifact(const Artifact : string) : ByteArray; virtual;

[C++]
    void LoadArtifact(const std::string &Artifact, std::vector<uint8_t> &OutResult);

[PHP]
    string LoadArtifact(string $Artifact)

[Java]
    byte[] loadArtifact(String Artifact);

Parameters

  • Artifact - the communication protocol message from which the artifact should be loaded.

Return value

Returns the artifact string.

Description

Use this method to extract the artifact srting from a SAML message (e.g., a URL of an HTTP GET request).

See also:     SaveArtifact    

Discuss this help topic in SecureBlackbox Forum