PropertyPageCollection Class
This is a sealed class that represents a collection of PropertyPage objects.
Namespace: Microsoft.ManagementConsole
Assembly: Microsoft.ManagementConsole (in Microsoft.ManagementConsole.dll)
Inheritance Hierarchy
System.Object
System.Collections.CollectionBase
Microsoft.ManagementConsole.BaseCollection
Microsoft.ManagementConsole.PropertyPageCollection
Syntax
public sealed class PropertyPageCollection : BaseCollection
public ref class PropertyPageCollection sealed : BaseCollection
[<Sealed>]
type PropertyPageCollection =
class
inherit BaseCollection
end
Public NotInheritable Class PropertyPageCollection
Inherits BaseCollection
Constructors
Name | Description | |
---|---|---|
PropertyPageCollection() | Initializes a new instance of the PropertyPageCollection class. |
Properties
Name | Description | |
---|---|---|
Capacity | (Inherited from CollectionBase.) |
|
Count | (Inherited from CollectionBase.) |
|
Item[Int32] | Gets or sets the PropertyPage object 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(PropertyPage) | Adds a PropertyPage object to the end of the collection. |
|
Clear() | (Inherited from CollectionBase.) |
|
Contains(Object) | Determines whether an item is in the collection. (Inherited from BaseCollection.) |
|
Contains(PropertyPage) | Determines whether a specific PropertyPage object is in the collection. |
|
CopyTo(PropertyPage[], Int32) | Copies the contents of the collection to a PropertyPage 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(PropertyPage) | Determines the index of a specific PropertyPage object in the collection. |
|
Insert(Int32, PropertyPage) | Inserts a PropertyPage object into the collection. |
|
Remove(PropertyPage) | Removes the first occurrence of a specific PropertyPage object from the collection. |
|
RemoveAt(Int32) | (Inherited from CollectionBase.) |
|
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