Class DecodedValue<T>
Decoded value.
Inherited Members
Namespace: OnixS.Fix.Fast
Assembly: OnixS.Fix.Engine.dll
Syntax
public class DecodedValue<T>
Type Parameters
Name | Description |
---|---|
T |
Constructors
DecodedValue(int)
Constructor.
Declaration
public DecodedValue(int offset)
Parameters
Type | Name | Description |
---|---|---|
int | offset | Offset after decoding. |
DecodedValue(T, int)
Constructor.
Declaration
public DecodedValue(T value, int offset)
Parameters
Type | Name | Description |
---|---|---|
T | value | Decoded value. |
int | offset | Offset after decoding. |
DecodedValue(T, int, int)
Constructor.
Declaration
public DecodedValue(T value, int offset, int overflow)
Parameters
Type | Name | Description |
---|---|---|
T | value | Decoded value. |
int | offset | Offset after decoding. |
int | overflow | Overflow during decoding integer. |
Properties
Offset
Returns offset after decoding.
Declaration
public virtual int Offset { get; set; }
Property Value
Type | Description |
---|---|
int | Offset after decoding. |
Overflow
Returns overflow during decoding integer.
Declaration
public virtual int Overflow { get; set; }
Property Value
Type | Description |
---|---|
int | Overflow during decoding integer. |
Value
Returns decoded value.
Declaration
public virtual T Value { get; set; }
Property Value
Type | Description |
---|---|
T | Decoded value. |
Methods
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. |