Class AppDomainUnloadedException
The exception that is thrown when an attempt is made to access an unloaded application domain.
Inherited Members
Namespace: System
Assembly: mscorlib.dll
Syntax
public class AppDomainUnloadedException : SystemException
Constructors
AppDomainUnloadedException()
Initializes a new instance of the AppDomainUnloadedException class.
Declaration
public AppDomainUnloadedException()
AppDomainUnloadedException(string)
Initializes a new instance of the AppDomainUnloadedException class with a specified error message.
Declaration
public AppDomainUnloadedException(string message)
Parameters
Type | Name | Description |
---|---|---|
string | message | 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.
Declaration
public AppDomainUnloadedException(string message, Exception innerException)
Parameters
Type | Name | Description |
---|---|---|
string | message | The message that describes the error. |
Exception | innerException | 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. |