Castle.Core.DependencyModelCollection.Contains C# (CSharp) Method

Contains() public method

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