NodeSubItemDisplayNameCollection Class
Represents a collection of sub-item display name strings for a node.
Namespace: Microsoft.ManagementConsole
Assembly: Microsoft.ManagementConsole (in Microsoft.ManagementConsole.dll)
Inheritance Hierarchy
System.Object
System.Collections.CollectionBase
Microsoft.ManagementConsole.BaseCollection
Microsoft.ManagementConsole.NodeSubItemDisplayNameCollection
Syntax
public sealed class NodeSubItemDisplayNameCollection : BaseCollection
public ref class NodeSubItemDisplayNameCollection sealed : BaseCollection
[<Sealed>]
type NodeSubItemDisplayNameCollection =
class
inherit BaseCollection
end
Public NotInheritable Class NodeSubItemDisplayNameCollection
Inherits BaseCollection
Properties
Name | Description | |
---|---|---|
Capacity | (Inherited from CollectionBase.) |
|
Count | (Inherited from CollectionBase.) |
|
Item[Int32] | Gets or sets the node sub-item display name at the specified index. |
|
SyncRoot | Gets an object that can be used to synchronize access to the collection. (Inherited from BaseCollection.) |
Methods
Name | Description | |
---|---|---|
Add(String) | Adds a node sub-item display name to the end of the collection. |
|
AddRange(String[]) | Adds an array of node sub-item display names to the end of the collection. |
|
Clear() | (Inherited from CollectionBase.) |
|
Contains(Object) | Determines whether an item is in the collection. (Inherited from BaseCollection.) |
|
Contains(String) | Determines whether a specific node sub-item display name is in the collection. |
|
CopyTo(String[], Int32) | Copies the contents of the collection to a string array, starting at a specified array index. |
|
Equals(Object) | (Inherited from Object.) |
|
GetEnumerator() | (Inherited from CollectionBase.) |
|
GetHashCode() | (Inherited from Object.) |
|
GetType() | (Inherited from Object.) |
|
IndexOf(String) | Determines the index of a specific node sub-item display name in the collection. |
|
Insert(Int32, String) | Inserts a node sub-item display name into the collection. |
|
InsertRange(Int32, String[]) | Inserts an array of node sub-item display names into the collection at the specified index. |
|
Remove(String) | Removes the first occurrence of a specific node sub-item display name from the collection. |
|
RemoveAt(Int32) | (Inherited from CollectionBase.) |
|
ToArray() | Copies the entire contents of the collection to a new array of strings. |
|
ToString() | (Inherited from Object.) |
Explicit Interface Implementations
Name | Description | |
---|---|---|
ICollection.CopyTo(Array, Int32) | (Inherited from CollectionBase.) |
|
IList.Add(Object) | (Inherited from CollectionBase.) |
|
IList.Contains(Object) | (Inherited from CollectionBase.) |
|
IList.IndexOf(Object) | (Inherited from CollectionBase.) |
|
IList.Insert(Int32, Object) | (Inherited from CollectionBase.) |
|
IList.Remove(Object) | (Inherited from CollectionBase.) |
|
ICollection.IsSynchronized | (Inherited from CollectionBase.) |
|
ICollection.SyncRoot | (Inherited from CollectionBase.) |
|
IList.IsFixedSize | (Inherited from CollectionBase.) |
|
IList.IsReadOnly | (Inherited from CollectionBase.) |
|
IList.Item[Int32] | (Inherited from CollectionBase.) |
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
Microsoft.ManagementConsole Namespace
Return to top