Discuss this help topic in SecureBlackbox Forum

TElSAMLBinding.LoadRequest

TElSAMLBinding     See also     


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


Loads request from the communication protocol message.

Declaration

[C#]
    string LoadRequest(string Request);

[VB.NET]
    Function LoadRequest(ByVal Request As String) As String

[Pascal]
    function LoadRequest(const Request : string) : string; virtual;

[C++]
    void LoadRequest(const std::string &Request, std::string &OutResult);

[PHP]
    string LoadRequest(string $Request)

[Java]
    String loadRequest(String Request);

Parameters

  • Request - the content of the communication protocol message.

Return value

Returns the request XML element.

Description

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

See also:     SaveRequest    

Discuss this help topic in SecureBlackbox Forum