Represents a TINE tagged structure. More...
Public Member Functions | |
TTaggedStruct (object tstruct) | |
The primary constructor for a TINE tagged structure. More... | |
TTaggedStruct (object tstruct, string tstag) | |
The primary constructor for a TINE tagged structure. More... | |
Represents a TINE tagged structure.
A tagged structure is a user-defined data type that can carry any set of TINE data types (including other tagged structures) as an atomic unit.
|
inline |
The primary constructor for a TINE tagged structure.
Using this constructor will assign the structure's 'tag' name from the .NET structure's class name and the field names from the associated field names. But note: A structure's 'tag' name as well as the field names within a TINE tagged structure cannot exceed 16 characters. An alternative is to pass a null object and assign the structure's tag name and fields manually.
tstruct | is a .NET structure which will be examined and converted into a TINE tagged structure. |
Example:
|
inline |
The primary constructor for a TINE tagged structure.
Using this constructor will assign the structure's 'tag' name according to the tag parameter passed. If a null or empty string is passed then the constructor reverts to its simpler form using the .NET structure's class name and the field names from the associated field names. But note: A structure's 'tag' name as well as the field names within a TINE tagged structure cannot exceed 16 characters. An alternative is to pass a null object and assign the structure's tag name and fields manually.
tstruct | is a .NET structure which will be examined and converted into a TINE tagged structure. |
tstag | is a structure tag name to be assigned to the structure registered. |
Example: