Class SessionErrorEventArgs
Provides data for the Error event of the Scheduler.
Inherited Members
Namespace: OnixS.Fix.Scheduling
Assembly: OnixS.Fix.Engine.dll
Syntax
public class SessionErrorEventArgs : EventArgs
Constructors
SessionErrorEventArgs(Session, string, Exception)
Initializes new instance of SessionErrorEventArgs class.
Declaration
public SessionErrorEventArgs(Session session, string errorReason, Exception exception)
Parameters
Type | Name | Description |
---|---|---|
Session | session | Instance of FIX session which is either a source of error or which is related with given error. |
string | errorReason | Gets a message that describes current error. |
Exception | exception | Gets an Exception object which causes error. |
Properties
Exception
Gets an Exception object which causes error.
Declaration
public Exception Exception { get; }
Property Value
Type | Description |
---|---|
Exception |
Reason
Gets a message that describes current error.
Declaration
public string Reason { get; }
Property Value
Type | Description |
---|---|
string |
Session
Instance of FIX session which is either a source of error or which is related with given error.
Declaration
public Session Session { get; }
Property Value
Type | Description |
---|---|
Session |