WSFederationAuthenticationModule.GetSignInResponseMessage Method

Definition

Reads a SignInResponseMessage object from the form POST represented by the specified HTTP request.

public:
 virtual System::IdentityModel::Services::SignInResponseMessage ^ GetSignInResponseMessage(System::Web::HttpRequestBase ^ request);
public virtual System.IdentityModel.Services.SignInResponseMessage GetSignInResponseMessage (System.Web.HttpRequestBase request);
abstract member GetSignInResponseMessage : System.Web.HttpRequestBase -> System.IdentityModel.Services.SignInResponseMessage
override this.GetSignInResponseMessage : System.Web.HttpRequestBase -> System.IdentityModel.Services.SignInResponseMessage
Public Overridable Function GetSignInResponseMessage (request As HttpRequestBase) As SignInResponseMessage

Parameters

request
HttpRequestBase

The HTTP request from which to read the sign-in response message. The request should represent a form POST.

Returns

The sign-in response message that was created.

Exceptions

request is null.

A sign-in response message could not be read from the specified request.

Remarks

Called from the WSFederationAuthenticationModule.GetSecurityToken(HttpRequestBase) method in the request processing pipeline to get a sign-in response message from the form POST contained in the HTTP request.

Applies to