次の方法で共有


FeatureNotSupportedException コンストラクター

定義

オーバーロード

FeatureNotSupportedException()

FeatureNotSupportedException クラスの新しいインスタンスを初期化します。

FeatureNotSupportedException(String)

指定されたメッセージを使用して FeatureNotSupportedException クラスの新しいインスタンスを初期化します。

FeatureNotSupportedException(String, Exception)

指定したメッセージと内部例外を使用して、FeatureNotSupportedException クラスの新しいインスタンスを初期化します。

FeatureNotSupportedException()

ソース:
Exceptions.shared.cs
ソース:
Exceptions.shared.cs

FeatureNotSupportedException クラスの新しいインスタンスを初期化します。

public:
 FeatureNotSupportedException();
public FeatureNotSupportedException ();
Public Sub New ()

適用対象

FeatureNotSupportedException(String)

ソース:
Exceptions.shared.cs
ソース:
Exceptions.shared.cs

指定されたメッセージを使用して FeatureNotSupportedException クラスの新しいインスタンスを初期化します。

public:
 FeatureNotSupportedException(System::String ^ message);
public FeatureNotSupportedException (string message);
new Microsoft.Maui.ApplicationModel.FeatureNotSupportedException : string -> Microsoft.Maui.ApplicationModel.FeatureNotSupportedException
Public Sub New (message As String)

パラメーター

message
String

この例外について詳しく説明するメッセージ。

適用対象

FeatureNotSupportedException(String, Exception)

ソース:
Exceptions.shared.cs
ソース:
Exceptions.shared.cs

指定したメッセージと内部例外を使用して、FeatureNotSupportedException クラスの新しいインスタンスを初期化します。

public:
 FeatureNotSupportedException(System::String ^ message, Exception ^ innerException);
public FeatureNotSupportedException (string message, Exception innerException);
new Microsoft.Maui.ApplicationModel.FeatureNotSupportedException : string * Exception -> Microsoft.Maui.ApplicationModel.FeatureNotSupportedException
Public Sub New (message As String, innerException As Exception)

パラメーター

message
String

この例外について詳しく説明するメッセージ。

innerException
Exception

この例外に関連する内部例外。

適用対象