RFA .NET Gets the number of DataDefs (not the number of entries in a DataDef).
Namespace: ThomsonReuters.RFA.DataAssembly: RFA8_NET110_x64 (in RFA8_NET110_x64.dll) Version: 8.0.1.1
Syntax
C# |
---|
public uint DataDefCount { get; } |
Visual Basic |
---|
Public ReadOnly Property DataDefCount As UInteger
Get |
Visual C++ |
---|
public:
property unsigned int DataDefCount {
unsigned int get ();
} |
F# |
---|
member DataDefCount : uint32
|
Field Value
The number of DataDefs. Application should first use this count to determine
if there are any DataDefs. If the value is non-zero, the application should next iterate
through the DataDefs. Application need iterate through all DataDefs (via
DataDefReadIterator)
prior to decoding any Data Content (via
MapReadIterator) to determine if any DataDefs are
non-local and thus need be cloned.
See Also