次の方法で共有


FeatureNotEnabledException コンストラクター

定義

オーバーロード

FeatureNotEnabledException()

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

FeatureNotEnabledException(String)

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

FeatureNotEnabledException(String, Exception)

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

FeatureNotEnabledException()

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

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

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

適用対象

FeatureNotEnabledException(String)

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

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

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

パラメーター

message
String

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

適用対象

FeatureNotEnabledException(String, Exception)

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

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

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

パラメーター

message
String

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

innerException
Exception

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

適用対象