다음을 통해 공유


UnknownMeteringIdException Constructors

Definition

Overloads

UnknownMeteringIdException()

Initializes a new instance of the UnknownMeteringIdException class.

UnknownMeteringIdException(String)

Initializes a new instance of the UnknownMeteringIdException class.

UnknownMeteringIdException(String, Exception)

Initializes a new instance of the UnknownMeteringIdException class.

UnknownMeteringIdException()

Initializes a new instance of the UnknownMeteringIdException class.

public UnknownMeteringIdException ();
Public Sub New ()

Applies to

UnknownMeteringIdException(String)

Initializes a new instance of the UnknownMeteringIdException class.

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

UnknownMeteringIdException(String, Exception)

Initializes a new instance of the UnknownMeteringIdException class.

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