August 2003
Intermediate to advanced
928 pages
32h 1m
English
MissingMemberException
This is the superclass of several exceptions that indicate an attempt to access a nonexistent member. Although the compiler detects explicit attempts of this sort, it does not protect against attempts to access nonexistent members using reflection.
public class MissingMemberException : MemberAccessException { // Public Constructors public MissingMemberException( ); public MissingMemberException(stringmessage); public MissingMemberException(stringmessage, Exceptioninner); public MissingMemberException(stringclassName, stringmemberName); // Protected Constructors protected MissingMemberException(System.Runtime.Serialization.SerializationInfoinfo, System.Runtime.Serialization.StreamingContextcontext); // Protected Instance Fields protected string ClassName; protected string MemberName; protected byte[ ] Signature; // Public Instance Properties public override string Message{get; } // overrides Exception // Public Instance Methods public override void GetObjectData(System.Runtime.Serialization.SerializationInfoinfo, System.Runtime.Serialization.StreamingContextcontext) // overrides Exception }
Object
→
Exception(System.Runtime.Serialization.ISerializable)
→
SystemException
→
MemberAccessException
→
MissingMemberException
MissingFieldException,
MissingMethodException