Creates a FAST to FIX Decoder.

Namespace: FIXForge.NET.FIX.FAST
Assembly: FIXForge.NET.FIX.Engine-net-3.5 (in FIXForge.NET.FIX.Engine-net-3.5.dll) Version: 2.79.1.0

Syntax

C#
public Decoder(
	string xmlFastTemplates,
	Dialect fixDialect,
	bool decodeEachMessageIndependently
)
Visual Basic
Public Sub New ( _
	xmlFastTemplates As String, _
	fixDialect As Dialect, _
	decodeEachMessageIndependently As Boolean _
)
Visual C++
public:
Decoder(
	String^ xmlFastTemplates, 
	Dialect^ fixDialect, 
	bool decodeEachMessageIndependently
)

Parameters

xmlFastTemplates
Type: System..::..String
XML-based FAST templates
fixDialect
Type: FIXForge.NET.FIX..::..Dialect
FIX dialect instance to which decoded messages are supposed to belong
decodeEachMessageIndependently
Type: System..::..Boolean
Option to reset the previous values dictionaries before decoding a new FAST stream chunk.

See Also