iLink 3 Session
An iLink 3 session is defined as a bi-directional stream of ordered messages between two parties within a continuous sequence number series. It is represented by the Session class. Each iLink 3 session is identified by a Universally Unique Identifier.
Constructing iLink 3 Session
To create a session, use Session(SessionSettings, Int32, SessionStorageType, UInt64, String) constructor.
Example
SessionSettings settings = new SessionSettings();
using (Session session = new Session(settings, marketSegmentId))
{
}