newtelligence.DasBlog.Web.Core.NavigatorItemCollection.Contains C# (CSharp) Method

Contains() public method

Determines whether a specfic NavigatorItem value is in this NavigatorItemCollection.
public Contains ( NavigatorItem value ) : bool
value NavigatorItem /// The NavigatorItem value to locate in this NavigatorItemCollection. ///
return bool
        public virtual bool Contains(NavigatorItem value)
        {
            return this.List.Contains(value);
        }