'Declaration
Public Function TryParse( _ ByVal input As String, _ ByRef resultList As UAIndexRangeList _ ) As IStringParsingError
'Usage
Dim instance As UAIndexRangeListParser Dim input As String Dim resultList As UAIndexRangeList Dim value As IStringParsingError value = instance.TryParse(input, resultList)
public IStringParsingError TryParse( string input, out UAIndexRangeList resultList )
public: IStringParsingError^ TryParse( String^ input, [Out] UAIndexRangeList^ resultList )
Parameters
- input
- Formatted text of the index range list.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - resultList
- A OpcLabs.EasyOpc.UA.UAIndexRangeList object. The converted index range list object.
The value of this parameter can be
null
(Nothing
in Visual Basic).The individual elements of the parameter value cannot be
null
(Nothing
in Visual Basic).
Return Value
null
if input was converted successfully; otherwise, returns an error object that describes the problem.
This method can return null
(Nothing
in Visual Basic).