MissingMethodException.Message Tulajdonság

Definíció

Lekéri a hiányzó metódus osztálynevét, metódusnevét és aláírását megjelenítő szöveges sztringet. Ez a tulajdonság írásvédett.

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

Tulajdonság értéke

A hibaüzenet sztringje.

Példák

Az alábbi példa a tulajdonságot Message mutatja be. Ez a példakód egy nagyobb, az MissingMethodException osztályhoz tartozó példa része.

try
{
    // Attempt to call a static DoSomething method defined in the App class.
    // However, because the App class does not define this method,
    // a MissingMethodException is thrown.
    typeof(App).InvokeMember("DoSomething", BindingFlags.Static |
        BindingFlags.InvokeMethod, null, null, null);
}
catch (MissingMethodException e)
{
    // Show the user that the DoSomething method cannot be called.
    Console.WriteLine("Unable to call the DoSomething method: {0}", e.Message);
}
try
    // Attempt to call a static DoSomething method defined in the App class.
    // However, because the App class does not define this method,
    // a MissingMethodException is thrown.
    typeof<App>.InvokeMember("DoSomething", BindingFlags.Static ||| BindingFlags.InvokeMethod, null, null, null)
    |> ignore
with :? MissingMethodException as e ->
    // Show the user that the DoSomething method cannot be called.
    printfn $"Unable to call the DoSomething method: {e.Message}"
Try
    ' Attempt to call a static DoSomething method defined in the App class.
    ' However, because the App class does not define this method, 
    ' a MissingMethodException is thrown.
    GetType(App).InvokeMember("DoSomething", BindingFlags.Static Or BindingFlags.InvokeMethod, _
                               Nothing, Nothing, Nothing)
Catch e As MissingMethodException
    ' Show the user that the DoSomething method cannot be called.
    Console.WriteLine("Unable to call the DoSomething method: {0}", e.Message)
End Try

Megjegyzések

Ha az osztálynév nincs megadva az objektum létrehozásakor, a rendszer visszaadja az alaposztálytól örökölt alapértelmezett szöveges sztringet.

Ez a tulajdonság felülbírálja a parancsot Message. A hibaüzenetet lokalizálni kell.

A következőre érvényes: