MissingMethodException::Message Property
Gets the text string showing the class name, the method name, and the signature of the missing method. This property is read-only.
Assembly: mscorlib (in mscorlib.dll)
Implements
_Exception::MessageIf the class name is not specified when the object is constructed, the default text string inherited from the base class is returned.
This property overrides Message. The error message should be localized.
The following example demonstrates the Message property. This code example is part of a larger example provided for the MissingMethodException class.
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. App::typeid->InvokeMember("DoSomething", BindingFlags::Static | BindingFlags::InvokeMethod, nullptr, nullptr, nullptr); } catch (MissingMethodException^ ex) { // Show the user that the DoSomething method cannot be called. Console::WriteLine("Unable to call the DoSomething method: {0}", ex->Message); }
Available since 10
.NET Framework
Available since 1.1
Silverlight
Available since 2.0