Extracts the repeating group representation from the message. The return value indicates whether the operation succeeded.
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 bool TryGetGroup(
int numberOfRepeatingGroupEntriesTag,
int repeatingGroupEntryIndex,
out Group group
)
Parameters
- numberOfRepeatingGroupEntriesTag
- Type: System.Int32
Tag number. - repeatingGroupEntryIndex
- Type: System.Int32
Index of the repeating group entry (starts at 0). - group
- Type: FIXForge.NET.FIX.Group
When this method returns, contains object which represents repeating group, if the extraction succeeded, or null if the extraction failed. The extraction fails if the field value is absent. This parameter is passed uninitialized.
Return Value
Type:
Booleantrue if the field value was extracted successfully; otherwise - false.
Exceptions Exception | Condition |
---|
EngineException | The tag number does not belong to the group. |
See Also