다음을 통해 공유


ServerFeatureNotSupportedException Constructors

Definition

Overloads

ServerFeatureNotSupportedException()

Initializes a new instance of the ServerFeatureNotSupportedException class.

ServerFeatureNotSupportedException(ServerSupportedFeature)

Initializes a new instance of the ServerFeatureNotSupportedException class.

ServerFeatureNotSupportedException(String)

Initializes a new instance of the ServerFeatureNotSupportedException class.

ServerFeatureNotSupportedException(String, Exception)

Initializes a new instance of the ServerFeatureNotSupportedException class.

ServerFeatureNotSupportedException()

Initializes a new instance of the ServerFeatureNotSupportedException class.

public ServerFeatureNotSupportedException ();
Public Sub New ()

Applies to

ServerFeatureNotSupportedException(ServerSupportedFeature)

Initializes a new instance of the ServerFeatureNotSupportedException class.

public ServerFeatureNotSupportedException (Microsoft.Media.Drm.ServerSupportedFeature feature);
new Microsoft.Media.Drm.ServerFeatureNotSupportedException : Microsoft.Media.Drm.ServerSupportedFeature -> Microsoft.Media.Drm.ServerFeatureNotSupportedException
Public Sub New (feature As ServerSupportedFeature)

Parameters

feature
ServerSupportedFeature

The feature that is not supported.

Applies to

ServerFeatureNotSupportedException(String)

Initializes a new instance of the ServerFeatureNotSupportedException class.

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

ServerFeatureNotSupportedException(String, Exception)

Initializes a new instance of the ServerFeatureNotSupportedException class.

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