.Net API Get Functions¶
getDouble¶
double getDouble(String^ path)
Get a double value from the specified node.
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path to the node holding the value |
Returns Double value.
getDouble¶
double getDouble(String^ path)
Get a double value from the specified node.
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path to the node holding the value |
Returns Double value.
getComplex¶
Complex getComplex(String^ path)
Get a complex double value from the specified node.
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path to the node holding the value |
Returns Complex double value.
getInt¶
int64_t getInt(String^ path)
Get a integer value from the specified node.
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path to the node holding the value |
Returns Integer value.
getInt¶
int64_t getInt(String^ path)
Get a integer value from the specified node.
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path to the node holding the value |
Returns Integer value.
getByte¶
String getByte(String^ path)
Get a byte array (string) value from the specified node.
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path to the node holding the value |
Returns Byte array (string) value.
getString¶
String getString(String^ path)
Get a string value from the specified node.
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path to the node holding the value |
Returns String value.
getString¶
String getString(String^ path)
Get a string value from the specified node.
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path to the node holding the value |
Returns String value.
getDemodSample¶
ZIDemodSample getDemodSample(String^ path)
Gets the demodulator sample value of the specified node.
This function retrieves the value of the specified node as an DemodSample struct. The value first found is returned if more than one value is available (a wildcard is used in the path). This function is only applicable to paths matching DEMODS/[0-9]+/SAMPLE.
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path to the node holding the value |
Returns ZIDemodSample struct.
getDIOSample¶
ZIDIOSample getDIOSample(String^ path)
Gets the Digital I/O sample of the specified node.
This function retrieves the newest available DIO sample from the specified node. The value first found is returned if more than one value is available (a wildcard is used in the path). This function is only applicable to nodes ending in "/DIOS/[0-9]+/INPUT".
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path to the node holding the value |
Returns ZIDIOSample struct
getAuxInSample¶
ZIAuxInSample getAuxInSample(String^ path)
Gets the AuxIn sample of the specified node.
This function retrieves the newest available AuxIn sample from the specified node. The value first found is returned if more than one value is available (a wildcard is used in the path). This function is only applicable to nodes ending in "/AUXINS/[0-9]+/SAMPLE".
Parameters
Name | Type | Direction | Description |
---|---|---|---|
path | String^ | in | Path to the Node holding the value |
Returns ZIAuxInSample struct