Interface ICheckRemoteServerResult

Result returned from a CheckRemoteServerAsync(String) invocation.

Namespace: PushTechnology.ClientInterface.Client.Features.Control.Clients
Assembly: Diffusion.Client.dll
Syntax
public interface ICheckRemoteServerResult

Properties

ConnectionState

Returns the connection state of the remote server.

Declaration
RemoteServerConnectionState ConnectionState { get; }
Property Value
Type Description
RemoteServerConnectionState

The connection state.

FailureMessage

Returns a failure message when the state returned is FAILED or RETRYING.

For other states this will return an empty string.

Declaration
string FailureMessage { get; }
Property Value
Type Description
System.String

The failure message, if there is one, otherwise an empty string.

Back to top