'Declaration
<CanBeNullAttribute()> <PureAttribute()> Public Shared Function FromEnumerable( _ ByVal enumerable As IEnumerable(Of String) _ ) As BrowsePath
'Usage
Dim enumerable As IEnumerable(Of String) Dim value As BrowsePath value = BrowsePath.FromEnumerable(enumerable)
[CanBeNull()] [Pure()] public static BrowsePath FromEnumerable( IEnumerable<string> enumerable )
[CanBeNull()] [Pure()] public: static BrowsePath^ FromEnumerable( IEnumerable<String^>^ enumerable )
Parameters
- enumerable
- Sequence of browse names, starting from the root.
The value of this parameter can be
null
(Nothing
in Visual Basic).
Return Value
null
when the input is null
. Otherwise, returns the browse path object made from the sequence of browse names.
This method can return null
(Nothing
in Visual Basic).