'Declaration
<CanBeNullAttribute()> <ContractAnnotationAttribute("null => null; notnull => notnull")> Public Shared Function ToValueResult( _ ByVal vtqResult As DAVtqResult _ ) As ValueResult
'Usage
Dim vtqResult As DAVtqResult Dim value As ValueResult value = DAVtqResult.ToValueResult(vtqResult)
[CanBeNull()] [ContractAnnotation("null => null; notnull => notnull")] public static ValueResult ToValueResult( DAVtqResult vtqResult )
[CanBeNull()] [ContractAnnotation("null => null; notnull => notnull")] public: static ValueResult^ ToValueResult( DAVtqResult^ vtqResult )
Parameters
- vtqResult
- The OPC-DA VTQ result to be converted.
The value of this parameter can be
null
(Nothing
in Visual Basic).
Return Value
The value result object that corresponds to the VTQ result.
null
if the VTQ result passed in was null
.
This method can return null
(Nothing
in Visual Basic).