• Programming Guide
  • Api Documentation
  • OnixS .NET Core / .NET 6 FIX Engine, version 1.9.0
Show / Hide Table of Contents
  • OnixS.Fix
    • ByteBuffer
    • BytesReceivedEventHandler
    • CertificateValidationArgs
    • Dictionary
    • 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
    • InboundMessageEventArgs
    • IncomingTelecommunicationLinkEventArgs
    • ISession
    • ITimestampProvider
    • KnownSerializedFieldKeys
    • Message
    • MessageEventArgs
    • MessageMemoryPool
    • MessageMemoryPoolSettings
    • MessageMode
    • MessageResendingEventArgs
    • MessageSendingEventArgs
    • MessageValidationFlags
    • PortRange
    • ProtocolVersion
    • ProtocolVersionExtensions
    • ProtocolVersionHelper
    • ProxySettings
    • ProxyType
    • RemoteCertificateNameMismatchOption
    • RemoteCertificateValidationCallback
    • SerializedFieldKey
    • SerializedFieldRef
    • SerializedMessage
    • Session
    • SessionErrorEventArgs
    • SessionErrorReason
    • SessionId
    • SessionRole
    • SessionState
    • SessionStateChangeEventArgs
    • SessionStorageType
    • SessionWarningEventArgs
    • SessionWarningReason
    • SslSettings
    • TimeSpanFormat
    • TimestampFormat
    • UnknownIncomingConnectionEventArgs
  • OnixS.Fix.Dictionaries
    • DictionaryException
    • DictionaryManager
    • FieldContainerInfo
    • FieldInfo
    • FieldType
    • FieldTypeInfo
    • FieldValueInfo
    • MessageInfo
    • MessageInfoExtensions
  • OnixS.Fix.Exceptions
    • CannotEstablishLinkException
    • EmptyGroupException
    • EngineAlreadyInitializedException
    • EngineIsNotInitializedException
    • FirstMessageNotLogonException
    • IncorrectCheckSumException
    • IncorrectFieldValueException
    • IndexNotFoundException
    • InstanceIndexOutOfRangeException
    • InvalidInboundLogonException
    • InvalidMsgTypeException
    • InvalidNumberOfRepeatingGroupInstances
    • LicenseException
    • LicenseExpiredException
    • LicenseNotFoundException
    • LinkErrorException
    • LogonReplyException
    • LogonReplyTimeoutException
    • LogoutReplyTimeoutException
    • ParserException
    • ParserException.RejectReason
    • RequiredTagMissingException
    • SessionException
    • StorageException
    • TagNotDefinedForThisMessageTypeException
    • TagNotFoundException
    • TagSpecifiedOutOfRequiredOrderException
    • TagSpecifiedWithoutValueException
    • UnexpectedSequenceNumberException
  • OnixS.Fix.Fast
    • Coder
    • DecodedValue<T>
    • Decoder
    • DecodeResult
    • 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

Class DictionaryBuilder

Builder of FIX dictionaries on the base of FAST template.

Inheritance
Object
DictionaryBuilder
Inherited Members
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Object.ToString()
Namespace: OnixS.Fix.Fast
Assembly: OnixS.Fix.Engine.dll
Syntax
public class DictionaryBuilder

Constructors

DictionaryBuilder()

Default constructor.

Declaration
public DictionaryBuilder()

DictionaryBuilder(Dictionary, Stream, Boolean)

Constructor for immediate building of the FIX dictionary.

Declaration
public DictionaryBuilder(Dictionary baseDictionary, Stream templateStream, bool rewindStreamAfterBuild = true)
Parameters
Type Name Description
Dictionary baseDictionary

Base FIX dictionary.

Stream templateStream

Stream with FAST template.

Boolean rewindStreamAfterBuild

If true (default) rewinds the template stream after building of dictionary to the position, that was before this call.

Properties

Dictionary

The built FIX dictionary.

Declaration
public Dictionary Dictionary { get; }
Property Value
Type Description
Dictionary

Methods

Build(Dictionary, Stream, Boolean)

Builds FIX dictionary.

Declaration
public DictionaryBuilder Build(Dictionary baseDictionary, Stream templateStream, bool rewindStreamAfterBuild = true)
Parameters
Type Name Description
Dictionary baseDictionary

Base FIX dictionary.

Stream templateStream

Stream with FAST template.

Boolean rewindStreamAfterBuild

If true (default) rewinds the template stream after building of dictionary to the position, that was before this call.

Returns
Type Description
DictionaryBuilder

BuildDictionary(Dictionary, Stream, Boolean)

Builds FIX dictionary on the base of the given FAST template.

Declaration
public static Dictionary BuildDictionary(Dictionary baseDictionary, Stream templateStream, bool rewindStreamAfterBuild = true)
Parameters
Type Name Description
Dictionary baseDictionary

Base FIX dictionary.

Stream templateStream

Stream with FAST template.

Boolean rewindStreamAfterBuild

If true (default) rewinds the template stream after building of dictionary to the position, that was before this call.

Returns
Type Description
Dictionary

The generated FIX dictionary.

Clear()

Clears the builder.

Declaration
public DictionaryBuilder Clear()
Returns
Type Description
DictionaryBuilder

The builder instance itself.

In This Article
Back to top Copyright © Onix Solutions.
Generated by DocFX