ConsoleNodeCollection members
Derives from the abstract class CollectionBase to provide a ConsoleNode object collection class.
The ConsoleNodeCollection type exposes the following members.
Properties
Name | Description | |
---|---|---|
Capacity | (Inherited from CollectionBase.) | |
Count | (Inherited from CollectionBase.) | |
InnerList | (Inherited from CollectionBase.) | |
IsReadOnly | Sets whether the collection is read-only. | |
IsSynchronized | Sets whether the collection is synchronized. | |
Item | Gets or sets the ConsoleNode object at the location specified by the index parameter. | |
List | (Inherited from CollectionBase.) | |
SyncRoot | Gets an object that can be used to synchronize access to the ConsoleNodeCollection. |
Top
Methods
Name | Description | |
---|---|---|
Add | Appends node to the ConsoleNodeCollection object. | |
Clear | (Inherited from CollectionBase.) | |
Contains | Determines if the ConsoleNode object is contained in the collection. | |
CopyTo | Copies items in the collection, starting from the value specified by the index parameter into the ConsoleNode array specified by the array parameter. | |
Equals | (Inherited from Object.) | |
Finalize | (Inherited from Object.) | |
GetEnumerator | Returns an enumerator object to traverse the collection. | |
GetHashCode | (Inherited from Object.) | |
GetType | (Inherited from Object.) | |
IndexOf | Returns the index of the given ConsoleNode object specified by the value parameter. | |
Insert | Inserts the ConsoleNode object specified by the value parameter into the collection after the index specified by the index parameter. | |
MemberwiseClone | (Inherited from Object.) | |
OnClear | (Inherited from CollectionBase.) | |
OnClearComplete | (Inherited from CollectionBase.) | |
OnInsert | (Inherited from CollectionBase.) | |
OnInsertComplete | (Inherited from CollectionBase.) | |
OnRemove | (Inherited from CollectionBase.) | |
OnRemoveComplete | (Inherited from CollectionBase.) | |
OnSet | (Inherited from CollectionBase.) | |
OnSetComplete | (Inherited from CollectionBase.) | |
OnValidate | (Inherited from CollectionBase.) | |
Remove(Int32) | Removes a node from the ConsoleNodeCollection at the specified index. | |
Remove(ConsoleNode) | Removes the first occurrence of a specific node from the ConsoleNodeCollection object. | |
RemoveAt | (Inherited from CollectionBase.) | |
ToString | (Inherited from Object.) |
Top
Explicit interface implementations
Name | Description | |
---|---|---|
IEnumerable<ConsoleNode>.GetEnumerator | Returns an enumerator that iterates through the ConsoleNodeCollection object. | |
IList.Add | (Inherited from CollectionBase.) | |
IList.Contains | (Inherited from CollectionBase.) | |
ICollection.CopyTo | (Inherited from CollectionBase.) | |
IList.IndexOf | (Inherited from CollectionBase.) | |
IList.Insert | (Inherited from CollectionBase.) | |
IList.IsFixedSize | (Inherited from CollectionBase.) | |
IList.IsReadOnly | (Inherited from CollectionBase.) | |
ICollection.IsSynchronized | (Inherited from CollectionBase.) | |
IList.Item | (Inherited from CollectionBase.) | |
IList.Remove | (Inherited from CollectionBase.) | |
ICollection.SyncRoot | (Inherited from CollectionBase.) |
Top