• Version 1.7.1
Show / Hide Table of Contents

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 and CgwSession. Each iLink 3 session is identified by a Universally Unique Identifier.

Constructing iLink 3 Session

To create a Market Segment Gateway session, use Session(SessionSettings, int, SessionStorageType, ulong, string, LogFactory) constructor, to a Convenience Gateway one - CgwSession(SessionSettings, SessionStorageType, ulong, string)

Example

SessionSettings settings = new ();

using Session session = new(settings, marketSegmentId);

or

using CgwSession cgwSession = new(settings);
In this article
Back to top Copyright © Onix Solutions.
Generated by DocFX