|
MeasurementKeyTryParse Method
|
Attempts to convert the string representation of a
MeasurementKey into its value equivalent.
Namespace: GSF.TimeSeriesAssembly: GSF.TimeSeries (in GSF.TimeSeries.dll) Version: 2.4.248-beta
SyntaxPublic Shared Function TryParse (
value As String,
<OutAttribute> ByRef key As MeasurementKey
) As Boolean
public:
static bool TryParse(
String^ value,
[OutAttribute] MeasurementKey^% key
)
static member TryParse :
value : string *
key : MeasurementKey byref -> bool
GSF.TimeSeries.MeasurementKey.TryParse = function(value, key);
View SourceParameters
- value String
- A string representing the MeasurementKey to convert.
- key MeasurementKey
- Output MeasurementKey in which to stored parsed value.
Return Value
BooleanA
true if
MeasurementKeyrepresentation contained in
value could be parsed; otherwise
false.
See Also