'Declaration
<CanBeNullAttribute()> Function TryParse( _ ByVal s As String, _ ByRef qualifiedName As Object _ ) As _StringParsingError
'Usage
Dim instance As _UAQualifiedNameParser Dim s As String Dim qualifiedName As Object Dim value As _StringParsingError value = instance.TryParse(s, qualifiedName)
[CanBeNull()] _StringParsingError TryParse( string s, out object qualifiedName )
[CanBeNull()] _StringParsingError^ TryParse( String^ s, [Out] Object^ qualifiedName )
Parameters
- s
- Expanded text of the qualified name.
The value of this parameter can be
null
(Nothing
in Visual Basic). - qualifiedName
- A OpcLabs.EasyOpc.UA.AddressSpace.UAQualifiedName object. The converted qualified name object.
The value of this parameter can be
null
(Nothing
in Visual Basic).
Return Value
null
if s was converted successfully; otherwise, returns an error object that describes the problem.
This method can return null
(Nothing
in Visual Basic).