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
System.Exception
SessionException
RemoteServerOptionsException
Implements
System.Runtime.Serialization.ISerializable
Inherited Members
System.Exception.GetBaseException()
System.Exception.GetObjectData(System.Runtime.Serialization.SerializationInfo, System.Runtime.Serialization.StreamingContext)
System.Exception.GetType()
System.Exception.ToString()
System.Exception.Data
System.Exception.HelpLink
System.Exception.HResult
System.Exception.InnerException
System.Exception.Message
System.Exception.Source
System.Exception.StackTrace
System.Exception.TargetSite
System.Exception.SerializeObjectState
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: PushTechnology.ClientInterface.Client.Features.Control.Clients
Assembly: Diffusion.Client.dll
Syntax
public class RemoteServerOptionsException : SessionException, ISerializable

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.

System.Collections.Generic.List<IErrorReport> reports

The error reports.

Methods

GetReports()

Returns the error reports generated.

Declaration
public List<IErrorReport> GetReports()
Returns
Type Description
System.Collections.Generic.List<IErrorReport>

The error reports generated.

Implements

System.Runtime.Serialization.ISerializable
Back to top