Class ObjectDisposedException
- Namespace
- System
- Assembly
- mscorlib.dll
The exception that is thrown when an operation is performed on a disposed object.
public class ObjectDisposedException : SystemException
- Inheritance
-
ObjectDisposedException
- Inherited Members
- Extension Methods
Constructors
ObjectDisposedException()
Initializes a new instance of the ObjectDisposedException class.
public ObjectDisposedException()
ObjectDisposedException(string)
Initializes a new instance of the ObjectDisposedException class with a string containing the name of the disposed object.
public ObjectDisposedException(string message)
Parameters
message
stringA string containing the name of the disposed object.
ObjectDisposedException(string, Exception)
Initializes a new instance of the ObjectDisposedException class with a specified error message and a reference to the inner exception that is the cause of this exception.
public ObjectDisposedException(string message, Exception innerException)
Parameters
message
stringThe error message that explains the reason for the exception.
innerException
ExceptionThe exception that is the cause of the current exception. If innerException is not null reference (Nothing in Visual Basic), the current exception is raised in a catch block that handles the inner exception.