|   | MeasurementKeyLookUpBySource Method | 
        
        
            Looks up the measurement key associated with the given source and ID.
            
        
        Namespace: GSF.TimeSeriesAssembly: GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.257-beta
 Syntax
Syntaxpublic static MeasurementKey LookUpBySource(
	string source,
	ulong id
)
Public Shared Function LookUpBySource ( 
	source As String,
	id As ULong
) As MeasurementKey
public:
static MeasurementKey^ LookUpBySource(
	String^ source, 
	unsigned long long id
)
static member LookUpBySource : 
        source : string * 
        id : uint64 -> MeasurementKey GSF.TimeSeries.MeasurementKey.LookUpBySource = function(source, id);
Parameters
- source  String
- The source of the signal.
- id  UInt64
- The source-specific unique integer identifier.
Return Value
MeasurementKeyThe measurement key associated with the given source and ID.
 Remarks
Remarks
            If no measurement key is found with the given source and ID,
            this method returns 
Undefined.
            
 See Also
See Also