'Declaration
Public Shared Function FindStandardQualifiedName( _ ByVal name As String, _ ByRef standardQualifiedName As UAQualifiedName _ ) As Boolean
'Usage
Dim name As String Dim standardQualifiedName As UAQualifiedName Dim value As Boolean value = UAUtilities.FindStandardQualifiedName(name, standardQualifiedName)
public static bool FindStandardQualifiedName( string name, out UAQualifiedName standardQualifiedName )
public: static bool FindStandardQualifiedName( String^ name, [Out] UAQualifiedName^ standardQualifiedName )
Parameters
- name
- The name for which the standard qualified name should be found.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - standardQualifiedName
- The standard qualified name that corresponds to the given name.
The value of this parameter can be
null
(Nothing
in Visual Basic).
Return Value
true
if the standard qualified name has been found; otherwise, returns false
.