image/svg+xml
  • OnixS .NET FIX Engine
  • Programming Guide
  • Api Documentation
  • Version 1.16.0
    • Api Documentation
    • OnixS.Fix.Fast
    • DecodedValue<T>
Show / Hide Table of Contents
  • OnixS.Fix
    • ByteBuffer
    • BytesReceivedEventHandler
    • CertificateValidationArgs
    • EncryptionMethod
    • Engine
    • Engine.State
    • EngineErrorEventArgs
    • EngineErrorReason
    • EngineException
    • EngineSettings
    • EngineSettings.Default
    • EngineSettings.Key
    • EngineSslSettings
    • EngineWarningEventArgs
    • EngineWarningReason
    • Field
    • FieldSet
    • FieldSet.FieldEnumerator
    • FixStringFormat
    • FlatGroupReader
    • FlatMessage
    • FlatMessage.FieldIterator
    • Group
    • Group.GroupInstanceEnumerator
    • GroupInstance
    • HighResolutionTimeSpan
    • HighResolutionTimestamp
    • IFieldSet
    • IMessage
    • IMessageInfoDictionary
    • ISession
    • ITimestampProvider
    • InboundMessageEventArgs
    • IncomingConnectionEventArgs
    • IncomingTelecommunicationLinkEventArgs
    • KnownSerializedFieldKeys
    • LinuxThreadPolicy
    • LogerExtensions
    • Message
    • MessageEventArgs
    • MessageInfoDictionary
    • MessageMemoryPool
    • MessageMemoryPoolSettings
    • MessageMode
    • MessageResendingEventArgs
    • MessageSendingEventArgs
    • MessageValidationFlags
    • PortRange
    • ProtocolVersion
    • ProtocolVersionExtensions
    • ProtocolVersionHelper
    • ProxySettings
    • ProxyType
    • RemoteCertificateNameMismatchOption
    • RemoteCertificateValidationCallback
    • ResendingStartedFinishedEventArgs
    • SerializedFieldKey
    • SerializedFieldRef
    • SerializedMessage
    • Session
    • SessionErrorEventArgs
    • SessionErrorReason
    • SessionId
    • SessionRole
    • SessionState
    • SessionStateChangeEventArgs
    • SessionStorageType
    • SessionWarningEventArgs
    • SessionWarningReason
    • SslSettings
    • Throttler
    • TimeSpanFormat
    • TimestampFormat
    • UnknownIncomingConnectionEventArgs
  • OnixS.Fix.Dictionaries
    • DictionaryException
    • FieldContainerInfo
    • FieldInfo
    • FieldType
    • FieldTypeInfo
    • FieldValueInfo
    • MessageInfo
    • MessageInfoDictionaryManager
    • MessageInfoExtensions
  • OnixS.Fix.Exceptions
    • CannotEstablishLinkException
    • EmptyGroupException
    • EngineAlreadyInitializedException
    • EngineIsNotInitializedException
    • FirstMessageNotLogonException
    • IncorrectCheckSumException
    • IncorrectFieldValueException
    • IndexNotFoundException
    • InstanceIndexOutOfRangeException
    • InvalidInboundLogonException
    • InvalidMsgTypeException
    • InvalidNumberOfRepeatingGroupInstances
    • LinkErrorException
    • LogonReplyException
    • LogonReplyTimeoutException
    • LogoutReplyTimeoutException
    • ParserException
    • ParserException.RejectReason
    • RequiredTagMissingException
    • SessionException
    • StorageException
    • TagNotDefinedForThisMessageTypeException
    • TagNotFoundException
    • TagSpecifiedOutOfRequiredOrderException
    • TagSpecifiedWithoutValueException
    • UnexpectedSequenceNumberException
  • OnixS.Fix.Fast
    • Coder
    • DecodeResult
    • DecodedValue<T>
    • Decoder
    • DecoderExtension
    • DictionaryBuilder
    • DynamicErrorException
    • DynamicErrorException.ErrorCode
    • Encoder
    • FastErrorCode
    • FastException
    • FixMessageFactory
    • NotEnoughInputDataException
    • StaticErrorException
    • StaticErrorException.ErrorCode
  • OnixS.Fix.Fix2FixmlConverter
    • FixmlConverter
    • FixmlConverterException
  • OnixS.Fix.Properties
    • Resources
  • OnixS.Fix.Scheduling
    • AcceptorConnectionSettings
    • CounterpartySettings
    • InitiatorConnectingEventArgs
    • InitiatorConnectionSettings
    • Scheduler
    • SequenceNumberResetPolicy
    • SessionConnectionSettings
    • SessionDuration
    • SessionErrorEventArgs
    • SessionEventArgs
    • SessionLoggingOutEventArgs
    • SessionSchedule
    • SessionWarningEventArgs
  • OnixS.Fix.Storage
    • ISessionStorage
    • IStoredMessage
    • StorageReadingMode

Class DecodedValue<T>

Decoded value.

Inheritance
object
DecodedValue<T>
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
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.

Overrides
object.ToString()
In this article
  • Constructors
    • DecodedValue(int)
    • DecodedValue(T, int)
    • DecodedValue(T, int, int)
  • Properties
    • Offset
    • Overflow
    • Value
  • Methods
    • ToString()
Back to top Copyright © Onix Solutions.
Generated by DocFX