SelectedNodeCollection Class
This sealed class represents a collection of selected nodes in a list view. This collection cannot be modified by the snap-in.
Namespace: Microsoft.ManagementConsole
Assembly: Microsoft.ManagementConsole (in Microsoft.ManagementConsole.dll)
Inheritance Hierarchy
System.Object
Microsoft.ManagementConsole.SelectedNodeCollection
Syntax
public sealed class SelectedNodeCollection : ICollection, IEnumerable
public ref class SelectedNodeCollection sealed : ICollection,
IEnumerable
[<Sealed>]
type SelectedNodeCollection =
class
interface ICollection
interface IEnumerable
end
Public NotInheritable Class SelectedNodeCollection
Implements ICollection, IEnumerable
Properties
Name | Description | |
---|---|---|
Count | Gets the number of items in the collection. |
|
Item[Int32] | Gets the item at the specified index. |
Methods
Name | Description | |
---|---|---|
Contains(Node) | Determines whether the collection contains a specific node. |
|
CopyTo(Node[], Int32) | Copies the nodes in the collection to a destination array, starting at a particular array index. |
|
Equals(Object) | (Inherited from Object.) |
|
GetHashCode() | (Inherited from Object.) |
|
GetType() | (Inherited from Object.) |
|
IndexOf(Node) | Determines the index of a specified node in the collection. |
|
ToArray() | Copies the elements of the selected node collection to a new node array. |
|
ToString() | (Inherited from Object.) |
Explicit Interface Implementations
Name | Description | |
---|---|---|
ICollection.CopyTo(Array, Int32) | Copies the elements of the ICollection to an Array, starting at a particular Array index. |
|
IEnumerable.GetEnumerator() | Returns an enumerator that iterates through a collection. |
|
ICollection.IsSynchronized | Gets a value indicating whether access to the ICollection is synchronized |
|
ICollection.SyncRoot | Gets an object that can be used to synchronize access to the ICollection. |
Thread Safety
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also
Node
Microsoft.ManagementConsole
Return to top