Represents an endpoint for BridgeHost connections.

Namespace: ININ.IceLib.Connection
Assembly: ININ.IceLib (in ININ.IceLib.dll) Version: 0.0.0.0 (22.3.0.218)

Syntax

C#
public class HostEndpoint
Visual Basic
Public Class HostEndpoint

Remarks

This is used by the HostSettings class to specify an endpoint (i.e. BridgeHost) for the Session to use when attempting a connection.


Note
BridgeHost is the connector between thin clients and the Session Manager. It translates network protocols, socket-level security checking, and other tasks during a thin client-to-Session Manager exchange.

Examples

CopyC#
HostEndpoint hostEndpoint = new HostEndpoint("MyBridgeHostServer");
HostSettings hostSettings = new HostSettings(hostEndpoint);
Session session = new Session();
session.Connect(..., hostSettings, ...);

Examples

The IceLib SDK includes example application references to the HostEndpoint class. Some examples are listed below.
ProjectLocation
TutorialExampleLoginHostViewModel.cs, line 30, in LoginHostViewModel.CreateHostSettings
LoginHostViewModel.cs, line 20, in LoginHostViewModel.#ctor

Inheritance Hierarchy

System..::..Object
  ININ.IceLib.Connection..::..HostEndpoint

Version Information

Supported for IC Server version 2015 R1 and beyond.
For 4.0, supported for IC Server version 4.0 GA and beyond.
For 3.0, supported for IC Server version 3.0 GA and beyond.

See Also