ServerFeatureNotSupportedException 构造函数

定义

重载

ServerFeatureNotSupportedException()

初始化 ServerFeatureNotSupportedException 类的新实例。

public ServerFeatureNotSupportedException();
Public Sub New ()

适用于

ServerFeatureNotSupportedException(ServerSupportedFeature)

初始化 ServerFeatureNotSupportedException 类的新实例。

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)

参数

feature
ServerSupportedFeature

不支持的功能。

适用于

ServerFeatureNotSupportedException(String)

初始化 ServerFeatureNotSupportedException 类的新实例。

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

参数

message
String

与此异常关联的短信。 请注意,消息不会发回客户端。

适用于

ServerFeatureNotSupportedException(String, Exception)

初始化 ServerFeatureNotSupportedException 类的新实例。

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)

参数

message
String

与此异常关联的短信。 请注意,消息不会发回客户端。

inner
Exception

是当前异常原因的异常。 如果此参数不是 null 引用,则当前异常在处理内部异常的 catch 块中引发。

适用于