Compartilhar via


IndivRequiredException Constructors

Definition

Overloads

IndivRequiredException()

Initializes a new instance of the IndivRequiredException class.

IndivRequiredException(String)

Initializes a new instance of the IndivRequiredException class.

IndivRequiredException(String, Exception)

Initializes a new instance of the IndivRequiredException class.

IndivRequiredException()

Initializes a new instance of the IndivRequiredException class.

public IndivRequiredException ();
Public Sub New ()

Applies to

IndivRequiredException(String)

Initializes a new instance of the IndivRequiredException class.

public IndivRequiredException (string message);
new Microsoft.Media.Drm.IndivRequiredException : string -> Microsoft.Media.Drm.IndivRequiredException
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

IndivRequiredException(String, Exception)

Initializes a new instance of the IndivRequiredException class.

public IndivRequiredException (string message, Exception inner);
new Microsoft.Media.Drm.IndivRequiredException : string * Exception -> Microsoft.Media.Drm.IndivRequiredException
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