SignOutRequestMessage Constructors
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.
Initializes a new instance of the SignOutRequestMessage class.
Overloads
SignOutRequestMessage(Uri) |
Initializes a new instance of the SignOutRequestMessage class with the specified base URL. |
SignOutRequestMessage(Uri, String) |
Initializes a new instance of the SignOutRequestMessage class with the specified base URL and wreply parameter. |
SignOutRequestMessage(Uri)
Initializes a new instance of the SignOutRequestMessage class with the specified base URL.
public:
SignOutRequestMessage(Uri ^ baseUrl);
public SignOutRequestMessage (Uri baseUrl);
new System.IdentityModel.Services.SignOutRequestMessage : Uri -> System.IdentityModel.Services.SignOutRequestMessage
Public Sub New (baseUrl As Uri)
Parameters
- baseUrl
- Uri
The base URL to which this message applies.
Exceptions
baseUrl
is null
.
baseUrl
is not a valid, absolute URI.
Remarks
The wa message parameter (the Action property) is initialized to "wsignout1.0".
Applies to
SignOutRequestMessage(Uri, String)
Initializes a new instance of the SignOutRequestMessage class with the specified base URL and wreply parameter.
public:
SignOutRequestMessage(Uri ^ baseUrl, System::String ^ reply);
public SignOutRequestMessage (Uri baseUrl, string reply);
new System.IdentityModel.Services.SignOutRequestMessage : Uri * string -> System.IdentityModel.Services.SignOutRequestMessage
Public Sub New (baseUrl As Uri, reply As String)
Parameters
- baseUrl
- Uri
The base URL to which this message applies.
- reply
- String
The value of the wreply parameter. The URL to which the reply should be sent.
Exceptions
baseUrl
is null
.
baseUrl
is not a valid, absolute URI.
Remarks
The wa message parameter (the Action property) is initialized to "wsignout1.0".