MissingMemberException Class
The exception that is thrown when there is an attempt to dynamically access a class member that does not exist.
For a list of all members of this type, see MissingMemberException Members.
System.Object
System.Exception
System.SystemException
System.MemberAccessException
System.MissingMemberException
System.MissingFieldException
System.MissingMethodException
[Visual Basic] <Serializable> Public Class MissingMemberException Inherits MemberAccessException [C#] [Serializable] public class MissingMemberException : MemberAccessException [C++] [Serializable] public __gc class MissingMemberException : public MemberAccessException [JScript] public Serializable class MissingMemberException extends MemberAccessException
Thread Safety
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Remarks
Normally a compilation error is generated if the code attempts to access a nonexistent member of a class. MissingMemberException is designed to handle cases where a field or a method is deleted or renamed in one assembly and the change is not reflected in a second assembly. At runtime, MissingMemberException will be thrown when the code in the second assembly attempts to access the missing member in the first assembly.
MissingMemberException is the base class for MissingFieldException and MissingMethodException. In general it is better to use one of the derived classes of MissingMemberException to more precisely indicate the exact nature of the error. Throw a MissingMemberException if you are only interested in capturing the general case of a missing member error.
MissingMemberException uses the HRESULT COR_E_MISSINGMEMBER, that has the value 0x80131512.
For a list of initial property values for an instance of MissingMemberException, see the MissingMemberException constructors.
Requirements
Namespace: System
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family, .NET Compact Framework
Assembly: Mscorlib (in Mscorlib.dll)
See Also
MissingMemberException Members | System Namespace | Exception | MissingFieldException | MissingMethodException | Handling and Throwing Exceptions