Interface IRemoteServer

Interface for a Remote Server specification.

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

Properties

ConnectionOptions

Return the remote server connection options.

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

MissingTopicNotificationFilter

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

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

Name

Return the remote server name.

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

Principal

Return the principal used for the remote server connection.

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

ServerUrl

Returns the url for connection to primary server.

Declaration
string ServerUrl { get; }
Property Value
Type Description
String
Back to top