Discuss this help topic in SecureBlackbox Forum

TElSAMLBinding.LoadResponse

TElSAMLBinding     See also     


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


Loads response from the communication protocol message.

Declaration

[C#]
    string LoadResponse(string Response);

[VB.NET]
    Function LoadResponse(ByVal Response As String) As String

[Pascal]
    function LoadResponse(const Response : string) : string; virtual;

[C++]
    void LoadResponse(const std::string &Response, std::string &OutResult);

[PHP]
    string LoadResponse(string $Response)

[Java]
    String loadResponse(String Response);

Parameters

  • Response - the content of the communication protocol message.

Return value

Returns the response XML element.

Description

Use this method to load SAML response element from the communication protocol (HTTP, SOAP, etc.) message. The exact implementation of this method depends on the type of binding.

See also:     SaveResponse    

Discuss this help topic in SecureBlackbox Forum