Interface IGroup
Represents a repeating group.
Inherited Members
Namespace: OnixS.SimpleBinaryEncoding
Assembly: OnixS.SimpleBinaryEncoding.dll
Syntax
public interface IGroup : IFieldSet, ICloneable
Properties
Count
Declaration
int Count { get; }
Property Value
| Type | Description |
|---|---|
| int | The number of entries in the repeating group. |
Methods
GetEnumerator()
Returns the repeating group entries enumerator.
Declaration
IEnumerator<IFieldSet> GetEnumerator()
Returns
| Type | Description |
|---|---|
| IEnumerator<IFieldSet> | The repeating group entries enumerator. |
MoveNext()
Advances the repeating group to the next entry.
Declaration
bool MoveNext()
Returns
| Type | Description |
|---|---|
| bool |
|
Reset()
Resets the repeating group entry position.
Declaration
void Reset()