C# Class Castle.Core.DependencyModelCollection

Inheritance: System.Collections.ReadOnlyCollectionBase
Exibir arquivo Open project: nats/castle-1.0.3-mono Class Usage Examples

Public Methods

Method Description
Add ( DependencyModel model ) : void

Adds the specified model.

Clear ( ) : void

Clears this instance.

Contains ( DependencyModel model ) : bool

Determines whether this collection contains the the specified model.

DependencyModelCollection ( ) : System

Initializes a new instance of the DependencyModelCollection class.

DependencyModelCollection ( DependencyModel dependencies ) : System

Initializes a new instance of the DependencyModelCollection class.

DependencyModelCollection ( DependencyModelCollection dependencies ) : System

Initializes a new instance of the DependencyModelCollection class.

Remove ( DependencyModel model ) : void

Removes the specified model.

Method Details

Add() public method

Adds the specified model.
public Add ( DependencyModel model ) : void
model DependencyModel The model.
return void

Clear() public method

Clears this instance.
public Clear ( ) : void
return void

Contains() public method

Determines whether this collection contains the the specified model.
public Contains ( DependencyModel model ) : bool
model DependencyModel The model.
return bool

DependencyModelCollection() public method

Initializes a new instance of the DependencyModelCollection class.
public DependencyModelCollection ( ) : System
return System

DependencyModelCollection() public method

Initializes a new instance of the DependencyModelCollection class.
public DependencyModelCollection ( DependencyModel dependencies ) : System
dependencies DependencyModel The dependencies.
return System

DependencyModelCollection() public method

Initializes a new instance of the DependencyModelCollection class.
public DependencyModelCollection ( DependencyModelCollection dependencies ) : System
dependencies DependencyModelCollection The dependencies.
return System

Remove() public method

Removes the specified model.
public Remove ( DependencyModel model ) : void
model DependencyModel The model.
return void