IExplorerNodeCollection Interface
Represents a collection of IExplorerNode objects.
Namespace: Microsoft.VisualStudio.SharePoint.Explorer
Assembly: Microsoft.VisualStudio.SharePoint (in Microsoft.VisualStudio.SharePoint.dll)
Syntax
'Declaration
Public Interface IExplorerNodeCollection _
Inherits IEnumerable(Of IExplorerNode), IEnumerable
public interface IExplorerNodeCollection : IEnumerable<IExplorerNode>,
IEnumerable
The IExplorerNodeCollection type exposes the following members.
Methods
Name | Description | |
---|---|---|
Add(String, String, IDictionary<Object, Object>) | Creates a new IExplorerNode and adds it to the collection. | |
Add(String, String, IDictionary<Object, Object>, Int32) | Creates a new IExplorerNode with the specified sort position among sibling nodes. | |
AddFolder | Creates a new folder node and uses the specified delegate to create child nodes for the new folder node. | |
GetEnumerator | Returns an enumerator that iterates through the collection. (Inherited from IEnumerable<IExplorerNode>.) |
Top