英語で読む

次の方法で共有


MissingFieldException.Message プロパティ

定義

存在しないフィールドのシグネチャ、クラス名、およびフィールド名を示す文字列を取得します。 このプロパティは読み取り専用です。

public override string Message { get; }

プロパティ値

エラー メッセージ文字列。

Messageプロパティの例を次に示します。 このコード例は、MissingFieldException クラスのために提供されている大規模な例の一部です。

try
{
    // Attempt to access a static AField field defined in the App class.
    // However, because the App class does not define this field,
    // a MissingFieldException is thrown.
    typeof(App).InvokeMember("AField", BindingFlags.Static | BindingFlags.SetField,
        null, null, new Object[] { 5 });
}
catch (MissingFieldException e)
{
 // Show the user that the AField field cannot be accessed.
 Console.WriteLine("Unable to access the AField field: {0}", e.Message);
}

注釈

オブジェクトの作成時にクラス名が指定されていない場合は、基底クラスから継承された既定のテキスト文字列が返されます。 このプロパティは をオーバーライドします Message。 エラー メッセージはローカライズする必要があります。

適用対象

製品 バージョン
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9, 10
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.3, 1.4, 1.5, 1.6, 2.0, 2.1
UWP 10.0