SignOutCleanupRequestMessage Constructors

Definition

Initializes a new instance of the SignOutCleanupRequestMessage class.

Overloads

SignOutCleanupRequestMessage(Uri)

Initializes a new instance of the SignOutCleanupRequestMessage class with the specified base URL.

SignOutCleanupRequestMessage(Uri, String)

Initializes a new instance of the SignOutCleanupRequestMessage class with the specified base URL and wreply parameter.

SignOutCleanupRequestMessage(Uri)

Initializes a new instance of the SignOutCleanupRequestMessage class with the specified base URL.

public:
 SignOutCleanupRequestMessage(Uri ^ baseUrl);
public SignOutCleanupRequestMessage (Uri baseUrl);
new System.IdentityModel.Services.SignOutCleanupRequestMessage : Uri -> System.IdentityModel.Services.SignOutCleanupRequestMessage
Public Sub New (baseUrl As Uri)

Parameters

baseUrl
Uri

The base URL to which this message applies.

Remarks

The wa message parameter (the Action property) is initialized to "wsignoutcleanup1.0".

Applies to

SignOutCleanupRequestMessage(Uri, String)

Initializes a new instance of the SignOutCleanupRequestMessage class with the specified base URL and wreply parameter.

public:
 SignOutCleanupRequestMessage(Uri ^ baseUrl, System::String ^ reply);
public SignOutCleanupRequestMessage (Uri baseUrl, string reply);
new System.IdentityModel.Services.SignOutCleanupRequestMessage : Uri * string -> System.IdentityModel.Services.SignOutCleanupRequestMessage
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

reply is either empty or null.

-or-

reply is not a valid URI.

Remarks

The wa message parameter (the Action property) is initialized to "wsignoutcleanup1.0".

Applies to