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

Remove() public method

Removes the first occurrence of a specific NavigatorItem from this NavigatorItemCollection.
public Remove ( NavigatorItem value ) : void
value NavigatorItem /// The NavigatorItem value to remove from this NavigatorItemCollection. ///
return void
        public virtual void Remove(NavigatorItem value)
        {
            this.List.Remove(value);
        }