newtelligence.DasBlog.Web.Core.NavigatorItemCollection.Contains C# (CSharp) 메소드

Contains() 공개 메소드

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. ///
리턴 bool
        public virtual bool Contains(NavigatorItem value)
        {
            return this.List.Contains(value);
        }