Returns true if the field is present in the repeating group or false otherwise.

Namespace: FIXForge.NET.FIX
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 bool Contain(
	int tag,
	int repeatingGroupEntryIndex
)
Visual Basic
Public Function Contain ( _
	tag As Integer, _
	repeatingGroupEntryIndex As Integer _
) As Boolean
Visual C++
public:
bool Contain(
	int tag, 
	int repeatingGroupEntryIndex
)

Parameters

tag
Type: System..::..Int32
Tag number.
repeatingGroupEntryIndex
Type: System..::..Int32
Index of the repeating group entry (starts at 0).

Return Value

true if the field is present in the repeating group or false otherwise.

Exceptions

ExceptionCondition
FIXForge.NET.FIX..::..EngineExceptionThe tag number does not belong to the repeating group.

See Also