Used to change the station login and logout behavior with respect to the IceLib Session.

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

Syntax

C#
public enum StationConnectionMode
Visual Basic
Public Enumeration StationConnectionMode

Members

Member nameValueDescription
Default0 The user should be logged out of the station when the IceLib Session is disconnected.
IndependentOfSession1 The user should remain logged into the station when the IceLib Session is disconnected.
IndependentConnectionsLogoutWithSession2 Indicates that this station login, as well as those created for with IndependentOfSession using the same application group ID should be logged out when this IceLib Session is disconnected.

Remarks

The StationConnectionMode can be used to indicate how the system should manage the user's station session. If StationConnectionMode.Default is specified, the user will be logged into the specified station when the IceLib Session connects, and will be logged out of that station when the IceLib Session is disconnected. If IndependentOfSession is specified, the user will be logged into the station while the IceLib Session connects and also after Session disconnects. When IndependentConnectionsLogoutWithSession is used, all station connections for the user that have the same application group ID as the current session will be disconnected when the IceLib Session is disconnected.

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