Condividi tramite


ClientRedirectException Constructors

Definition

Overloads

ClientRedirectException()

Initializes a new instance of the ClientRedirectException class.

ClientRedirectException(String)

Initializes a new instance of the ClientRedirectException class.

ClientRedirectException(Uri)

Initializes a new instance of the ClientRedirectException class.

ClientRedirectException(String, Exception)

Initializes a new instance of the ClientRedirectException class.

ClientRedirectException()

Initializes a new instance of the ClientRedirectException class.

public ClientRedirectException ();
Public Sub New ()

Applies to

ClientRedirectException(String)

Initializes a new instance of the ClientRedirectException class.

public ClientRedirectException (string message);
new Microsoft.Media.Drm.ClientRedirectException : string -> Microsoft.Media.Drm.ClientRedirectException
Public Sub New (message As String)

Parameters

message
String

Text message associated with this exception. Note that the message is not sent back to the client.

Applies to

ClientRedirectException(Uri)

Initializes a new instance of the ClientRedirectException class.

public ClientRedirectException (Uri url);
new Microsoft.Media.Drm.ClientRedirectException : Uri -> Microsoft.Media.Drm.ClientRedirectException
Public Sub New (url As Uri)

Parameters

url
Uri

The Uri that the client should re-post its request to.

Applies to

ClientRedirectException(String, Exception)

Initializes a new instance of the ClientRedirectException class.

public ClientRedirectException (string message, Exception inner);
new Microsoft.Media.Drm.ClientRedirectException : string * Exception -> Microsoft.Media.Drm.ClientRedirectException
Public Sub New (message As String, inner As Exception)

Parameters

message
String

Text message associated with this exception. Note that the message is not sent back to the client.

inner
Exception

The exception that is the cause of the current exception. If this parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.

Applies to