'Declaration
<ContractAnnotationAttribute("null => false")> <PureAttribute()> Public Shared Function IsValidBrowseName( _ ByVal browseName As String _ ) As Boolean
'Usage
Dim browseName As String Dim value As Boolean value = BrowsePath.IsValidBrowseName(browseName)
[ContractAnnotation("null => false")] [Pure()] public static bool IsValidBrowseName( string browseName )
[ContractAnnotation("null => false")] [Pure()] public: static bool IsValidBrowseName( String^ browseName )
Parameters
- browseName
- The string to be tested for validity.
The value of this parameter can be
null
(Nothing
in Visual Basic).
Return Value
true
when the given string is a valid browse name; false
otherwise.