MessageParsingFlags Enumeration |
Collection of flags which affect the way FIX message is parsed from its raw (tag=value) presentation.
Namespace:
FIXForge.NET.FIX
Assembly:
FIXForge.NET.FIX.Engine-net-4.8_x64 (in FIXForge.NET.FIX.Engine-net-4.8_x64.dll) Version: 4.12.0.0
Syntax public enum MessageParsingFlags
Members
| Member name | Value | Description |
---|
| None | 0 | None of tag values will be validated during parsing. |
| ValidateBodyLength | 1 | BodyLength, tag=9 will be validated during parsing.
|
| ValidateCheckSum | 2 | CheckSum, tag=10 will be validated during parsing.
|
| ValidateFieldValues | 8 |
Some field values will be validated during parsing.
|
| ValidateRepeatingGroupEntryCount | 16 |
Repeating group entries count will be validated during parsing.
|
| ValidateRepeatingGroupLeadingTag | 32 |
During parsing will be validated that repeating group starts from required by dialect leading tag.
|
| ValidateDuplicatedField | 64 | |
| Strict | 123 |
All above mentioned validations will be performed during parsing.
|
See Also