Class FastErrorCode
Represents error code of the given exception.
Inherited Members
Namespace: OnixS.Fix.Fast
Assembly: OnixS.Fix.Engine.dll
Syntax
public class FastErrorCode
Properties
NumericCode
Numeric code of the error.
Each error has own unique numeric code that is exposed through this property. See appropriate exceptions description for the list of such codes.
Declaration
public uint NumericCode { get; protected set; }
Property Value
Type | Description |
---|---|
uint |
SymbolicCode
Symbolic name of the error code.
Consists of the prefix that is specific to the error group, and of an integer value which exactly identifies the error.
For instance, the symbolic name of "D1102" has the prefix "D" and the integer value "1102". The integer value (1102) is repeated also in the NumericCode property.
Declaration
public string SymbolicCode { get; protected set; }
Property Value
Type | Description |
---|---|
string |