WSFederationAuthenticationModule.SignOutReply 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 the value of the wreply parameter to use during WS-Federation sign-out requests ("wsignout1.0").
public:
property System::String ^ SignOutReply { System::String ^ get(); void set(System::String ^ value); };
public string SignOutReply { get; set; }
member this.SignOutReply : string with get, set
Public Property SignOutReply As String
Property Value
The URL to which the client should be redirected by the security token service (STS) following sign-out through the WS-Federation protocol.
Remarks
By default, this property is initialized from the signOutReply
attribute of the <wsFederation> element in the configuration file. It is intended to represent the wreply parameter in a WS-Federation sign-out request.
The wreply parameter is optional. If the SignOutReply property is set to null
or an empty string, the wreply parameter is not included in the sign-out request.
The WSFAM does not use this property directly. However, you can pass it to the FederatedSignOut method when performing WS-Federation sign-out from your code or you can pass it to the GetFederationPassiveSignOutUrl method to create a complete WS-Federation sign-out URL.