System.MissingMethodException Class

public class MissingMethodException : MissingMemberException

Base Types

Object
  Exception
    SystemException
      MemberAccessException
        MissingMemberException
          MissingMethodException

Assembly

mscorlib

Library

RuntimeInfrastructure

Summary

Represents the error that occurs when there is an attempt to dynamically access a method that does not exist.

Description

Normally a compilation error is generated if code attempts to access a nonexistent method of a class. MissingMethodException is designed to handle cases where an attempt is made to dynamically access a renamed or deleted method of an assembly that is not referenced by its strong name. The MissingMethodException is thrown when code in a dependent assembly attempts to access a missing method in an assembly that was modified.

[Note: The following CIL instructions throw MissingMethodException:

]

See Also

System Namespace

Members

MissingMethodException Constructors

MissingMethodException() Constructor
MissingMethodException(System.String) Constructor
MissingMethodException(System.String, System.Exception) Constructor


MissingMethodException() Constructor

public MissingMethodException();

Summary

Constructs and initializes a new instance of the MissingMethodException class.

Description

This constructor initializes the System.MissingMethodException.Message property of the new instance to a system-supplied message that describes the error, such as "Attempted to access a missing method." This message takes into account the current system culture.

The System.MissingMethodException.InnerException property of the new instance is initialized to null .

See Also

System.MissingMethodException Class, System Namespace

MissingMethodException(System.String) Constructor

public MissingMethodException(string message);

Summary

Constructs and initializes a new instance of the MissingMethodException class with a specified error message.

Parameters

message
A String that describes the error. The content of message is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.

Description

This constructor initializes the System.MissingMethodException.Message property of the new instance using message. If message is null , the System.MissingMethodException.Message property is initialized to the system-supplied message provided by the constructor that takes no arguments.

The System.MissingMethodException.InnerException property of the new instance is initialized to null .

See Also

System.MissingMethodException Class, System Namespace

MissingMethodException(System.String, System.Exception) Constructor

public MissingMethodException(string message, Exception inner);

Summary

Constructs and initializes a new instance of the MissingMethodException class.

Parameters

message
A String that describes the error. The content of message is intended to be understood by humans. The caller of this constructor is required to ensure that this string has been localized for the current system culture.
inner
An instance of Exception that is the cause of the current exception. If inner is not a null reference, the current exception was raised in a catch block handling inner .

Description

This constructor initializes the System.MissingMethodException.Message property of the new instance using message and the System.MissingMethodException.InnerException property using inner. If message is null , the System.MissingMethodException.Message property is initialized to the system-supplied message provided by the constructor that takes no arguments.

[Note: For more information on inner exceptions, see System.Exception.InnerException.]

See Also

System.MissingMethodException Class, System Namespace