Class RemoteServerOptionsException

Exception thrown when one or more of the options specified when creating a remote server have been found to be invalid.

Inheritance
System.Object
SessionException
RemoteServerOptionsException
Namespace: PushTechnology.ClientInterface.Client.Features.Control.Clients
Assembly: Diffusion.Client.dll
Syntax
public class RemoteServerOptionsException : SessionException

Constructors

RemoteServerOptionsException(String, List<IErrorReport>)

Initializes a new instance of the RemoteServerOptionsException class.

Declaration
public RemoteServerOptionsException(string message, List<IErrorReport> reports)
Parameters
Type Name Description
System.String message

Exception message.

List<IErrorReport> reports

The error reports.

Methods

GetReports()

Returns the error reports generated.

Declaration
public List<IErrorReport> GetReports()
Returns
Type Description
List<IErrorReport>

The error reports generated.

Back to top