MissingMemberException.Message 屬性

定義

取得顯示類別名稱、成員名稱和遺漏成員簽章的文字字串。

public:
 virtual property System::String ^ Message { System::String ^ get(); };
public override string Message { get; }
member this.Message : string
Public Overrides ReadOnly Property Message As String

屬性值

String

錯誤訊息字串。

範例

下列範例示範 Message 屬性。 此程式碼範例是提供給 類別之較大範例的 MissingMemberException 一部分。

try
{
    // Attempt to access a static AnotherField field defined in the App class.
    // However, because the App class does not define this field,
    // a MissingFieldException is thrown.
    App::typeid->InvokeMember("AnotherField", BindingFlags::Static |
        BindingFlags::GetField, nullptr, nullptr, nullptr);
}
catch (MissingMemberException^ ex)
{
    // Notice that this code is catching MissingMemberException which is the
    // base class of MissingMethodException and MissingFieldException.
    // Show the user that the AnotherField field cannot be accessed.
    Console::WriteLine("Unable to access the AnotherField field: {0}",
        ex->Message);
}
try
{
    // Attempt to access a static AnotherField field defined in the App class.
    // However, because the App class does not define this field,
    // a MissingFieldException is thrown.
    typeof(App).InvokeMember("AnotherField", BindingFlags.Static |
        BindingFlags.GetField, null, null, null);
}
catch (MissingMemberException e)
{
 // Notice that this code is catching MissingMemberException which is the
 // base class of MissingMethodException and MissingFieldException.
 // Show the user that the AnotherField field cannot be accessed.
 Console.WriteLine("Unable to access the AnotherField field: {0}", e.Message);
}
try
    // Attempt to access a static AnotherField field defined in the App class.
    // However, because the App class does not define this field,
    // a MissingFieldException is thrown.
    typeof<App>.InvokeMember("AnotherField", BindingFlags.Static ||| BindingFlags.GetField, null, null, null)
    |> ignore
with :? MissingMemberException as e ->
    // Notice that this code is catching MissingMemberException which is the
    // base class of MissingMethodException and MissingFieldException.
    // Show the user that the AnotherField field cannot be accessed.
    printfn $"Unable to access the AnotherField field: {e.Message}"
    Try
        ' Attempt to access a static AnotherField field defined in the App class.
        ' However, because the App class does not define this field, 
        ' a MissingFieldException is thrown.
        GetType(App).InvokeMember("AnotherField", BindingFlags.Static Or BindingFlags.GetField, _
                                   Nothing, Nothing, Nothing)
    Catch e As MissingMemberException
        ' Notice that this code is catching MissingMemberException which is the  
        ' base class of MissingMethodException and MissingFieldException.
        ' Show the user that the AnotherField field cannot be accessed.
        Console.WriteLine("Unable to access the AnotherField field: {0}", e.Message)
    End Try
End Sub

備註

如果未在建構物件時指定類別名稱,則會傳回繼承自基類的預設文字字串。

這個屬性會 Message 覆寫 。 錯誤訊息應當地語系化。

這個屬性是唯讀的。

適用於

另請參閱