Table of Contents

Class AppDomainUnloadedException

Namespace
System
Assembly
mscorlib.dll

The exception that is thrown when an attempt is made to access an unloaded application domain.

public class AppDomainUnloadedException : SystemException
Inheritance
AppDomainUnloadedException
Inherited Members
Extension Methods

Constructors

AppDomainUnloadedException()

Initializes a new instance of the AppDomainUnloadedException class.

public AppDomainUnloadedException()

AppDomainUnloadedException(string)

Initializes a new instance of the AppDomainUnloadedException class with a specified error message.

public AppDomainUnloadedException(string message)

Parameters

message string

The message that describes the error.

AppDomainUnloadedException(string, Exception)

Initializes a new instance of the AppDomainUnloadedException class with a specified error message and a reference to the inner exception that is the cause of this exception.

public AppDomainUnloadedException(string message, Exception innerException)

Parameters

message string

The message that describes the error.

innerException Exception

The exception that is the cause of the current exception. If the innerException parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.