ClientOfflineException Constructor
ClientOfflineException(ClientState)
Initializes a new instance of the ClientOfflineException class.
Declaration
public ClientOfflineException(ClientState state)
Parameters
ClientState | state | The client state. |
ClientOfflineException(String)
Initializes a new instance of the ClientOfflineException class with a specified error message.
Declaration
public ClientOfflineException(string message)
Parameters
String | message | The message that describes the error. |
ClientOfflineException(String, ClientState)
Initializes a new instance of the ClientOfflineException class with a specified error message.
Declaration
public ClientOfflineException(string message, ClientState state)
Parameters
String | message | The message that describes the error. |
ClientState | state | The client state. |
ClientOfflineException(Exception)
Initializes a new instance of the ClientOfflineException class with a reference to the inner exception that is the cause of this exception.
Declaration
public ClientOfflineException(Exception innerException)
Parameters
Exception | innerException | The exception that is the cause of the current exception, or a null reference if no inner exception is specified. |
ClientOfflineException(Exception, ClientState)
Initializes a new instance of the ClientOfflineException class with a reference to the inner exception that is the cause of this exception.
Declaration
public ClientOfflineException(Exception innerException, ClientState state)
Parameters
Exception | innerException | The exception that is the cause of the current exception, or a null reference if no inner exception is specified. |
ClientState | state | The client state. |
ClientOfflineException(String, Exception)
Initializes a new instance of the ClientOfflineException class with a specified error message and a reference to the inner exception that is the cause of this exception.
Declaration
public ClientOfflineException(string message, Exception innerException)
Parameters
String | message | The message that describes the error. |
Exception | innerException | The exception that is the cause of the current exception, or a null reference if no inner exception is specified. |
ClientOfflineException(String, Exception, ClientState)
Initializes a new instance of the ClientOfflineException class with a specified error message and a reference to the inner exception that is the cause of this exception.
Declaration
public ClientOfflineException(string message, Exception innerException, ClientState state)
Parameters
String | message | The message that describes the error. |
Exception | innerException | The exception that is the cause of the current exception, or a null reference if no inner exception is specified. |
ClientState | state | The client state. |