C# Class Microsoft.ManagementConsole.BaseCollection

Inheritance: System.Collections.CollectionBase
Show file Open project: SiteView/ECC8.13

Public Methods

Method Description
Contains ( object item ) : bool

Protected Methods

Method Description
AddRange ( object items ) : void
Insert ( int index, object item ) : void
InsertRange ( int index, object items ) : void
OnClear ( ) : void
OnClearComplete ( ) : void
OnInsert ( int index, object value ) : void
OnInsertComplete ( int index, object value ) : void
OnItemsAdded ( int index, object items ) : void
OnItemsRemoved ( int index, object items ) : void
OnRemove ( int index, object value ) : void
OnRemoveComplete ( int index, object value ) : void
OnSet ( int index, object oldValue, object newValue ) : void
OnSetComplete ( int index, object oldValue, object newValue ) : void
OnValidate ( object objectToValidate ) : void

Private Methods

Method Description
BaseCollection ( Type type ) : Microsoft.ManagementConsole.Internal
BaseCollection ( Type type, bool allowDuplicates ) : Microsoft.ManagementConsole.Internal
OnValidate ( object objectToValidate, bool testForDuplicate ) : void
ThrowArgumentExceptionIfDuplicate ( object value ) : void

Method Details

AddRange() protected method

protected AddRange ( object items ) : void
items object
return void

Contains() public method

public Contains ( object item ) : bool
item object
return bool

Insert() protected method

protected Insert ( int index, object item ) : void
index int
item object
return void

InsertRange() protected method

protected InsertRange ( int index, object items ) : void
index int
items object
return void

OnClear() protected method

protected OnClear ( ) : void
return void

OnClearComplete() protected method

protected OnClearComplete ( ) : void
return void

OnInsert() protected method

protected OnInsert ( int index, object value ) : void
index int
value object
return void

OnInsertComplete() protected method

protected OnInsertComplete ( int index, object value ) : void
index int
value object
return void

OnItemsAdded() protected method

protected OnItemsAdded ( int index, object items ) : void
index int
items object
return void

OnItemsRemoved() protected method

protected OnItemsRemoved ( int index, object items ) : void
index int
items object
return void

OnRemove() protected method

protected OnRemove ( int index, object value ) : void
index int
value object
return void

OnRemoveComplete() protected method

protected OnRemoveComplete ( int index, object value ) : void
index int
value object
return void

OnSet() protected method

protected OnSet ( int index, object oldValue, object newValue ) : void
index int
oldValue object
newValue object
return void

OnSetComplete() protected method

protected OnSetComplete ( int index, object oldValue, object newValue ) : void
index int
oldValue object
newValue object
return void

OnValidate() protected method

protected OnValidate ( object objectToValidate ) : void
objectToValidate object
return void