Interface IRemoteServer

Base interface for a Remote Server definition.

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

Properties

ConnectionOptions

Returns the remote server connection options.

Declaration
Dictionary<RemoteServerConnectionOption, string> ConnectionOptions { get; }
Property Value
Type Description
Dictionary<RemoteServerConnectionOption, System.String>

The remote server connection options.

MissingTopicNotificationFilter

Returns the missing topic notification filter expression or null if one has not been specified.

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

The missing topic notification filter expression.

Name

Returns the remote server name.

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

The remote server name.

Principal

Returns the principal used for the remote server connection.

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

The principal used for the remote server connection.

RemoteServerType

Declaration
RemoteServerType RemoteServerType { get; }
Property Value
Type Description
RemoteServerType

The remote server type.

ServerUrl

Returns the url for connection to the primary server.

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

The url for connection to the primary server.

Back to top