WSFederationAuthenticationModule.SignInQueryString Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets a query string that contains any additional parameters to be sent in WS-Federation sign-in requests ("wsignin1.0").
public:
property System::String ^ SignInQueryString { System::String ^ get(); void set(System::String ^ value); };
public string SignInQueryString { get; set; }
member this.SignInQueryString : string with get, set
Public Property SignInQueryString As String
Property Value
A URL fragment that contains the additional message parameters in the following format: param1=value1¶m2=value2¶mN=valueN
. The default is an empty string.
Exceptions
An attempt to set the property to null
occurs.
Remarks
You can use this property to send additional parameters in a sign-in request. These would be application-specific parameters that are not one of the parameters that are specified by the WS-Federation protocol. To remove additional parameters from the request set the property to an empty string.
You can override this setting on each HTTP request by adding a handler for the RedirectingToIdentityProvider event. This event is raised just before the module redirects to the security token service (STS) with a WS-Federation sign-in request message. The STS is specified by the Issuer property.