Class DecodeResult
Result of message decoding.
Inherited Members
Namespace: OnixS.Fix.Fast
Assembly: OnixS.Fix.Engine.dll
Syntax
public class DecodeResult
Properties
BytesUsed
The number of bytes used in the input data to decode the message.
Declaration
public virtual int BytesUsed { get; set; }
Property Value
Type | Description |
---|---|
int |
FixMessage
Decoded FIX message.
Declaration
public virtual Message FixMessage { get; set; }
Property Value
Type | Description |
---|---|
Message |
NewOffset
New offset in the input data to decode the next message.
Declaration
public virtual int NewOffset { get; set; }
Property Value
Type | Description |
---|---|
int |
TemplateId
Template ID used to decode the message.
Declaration
public virtual int TemplateId { get; set; }
Property Value
Type | Description |
---|---|
int |
Methods
Reset()
Cleanups the object. Always called during decoding.
Declaration
public virtual void Reset()
ToString()
Returns a string that represents the current object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
string | A string that represents the current object. |