|
ActiveMeasurementsTableLookupLookupByDeviceNameNoStat Method
|
Gets all of the rows with the provided device name. This will exclude
all ActiveMeasurements that are classified as SignalType='STAT'. This is because
'STAT's are not associated with a device in the database.
Returns an empty set if the deviceID could not be found.
Namespace: GSF.TimeSeries.DataAssembly: GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.246-beta
Syntaxpublic IEnumerable<DataRow> LookupByDeviceNameNoStat(
string deviceName
)
Public Function LookupByDeviceNameNoStat (
deviceName As String
) As IEnumerable(Of DataRow)
public:
IEnumerable<DataRow^>^ LookupByDeviceNameNoStat(
String^ deviceName
)
member LookupByDeviceNameNoStat :
deviceName : string -> IEnumerable<DataRow>
function LookupByDeviceNameNoStat(deviceName);
View SourceParameters
- deviceName String
- the device to lookup.
Return Value
IEnumerableDataRow
Returns an empty set if the device could not be found.
See Also