• Version 1.15.2
Show / Hide Table of Contents

FIX Session

A FIX session is a bi-directional stream of ordered messages between two parties within a continuous sequence number series. It is represented by the Session class.

Constructing Session

To create a session use one of Session's constructors.

For example:

var session = new Session("SenderCompId", "TargetCompId", ProtocolVersion.Fix42);

Shutting Down Session

To terminate the session gracefully, use the Dispose() method (explicitly or implicitly).

For example:

using Session session = new Session("SenderCompId", "TargetCompId", ProtocolVersion.Fix42);
// session-related logic
In this article
Back to top Copyright © Onix Solutions.
Generated by DocFX