This documentation is archived and is not being maintained.
MissingMemberException::Message Property
Visual Studio 2010
Gets the text string showing the class name, the member name, and the signature of the missing member.
Assembly: mscorlib (in mscorlib.dll)
If 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.
This property is read-only.
The following example demonstrates the Message property. This code example is part of a larger example provided for the MissingMemberException class.
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); }
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: