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

this() public method

Gets or sets the NavigatorItem at the given index in this NavigatorItemCollection.
public this ( int index ) : NavigatorItem
index int
return NavigatorItem
        public virtual NavigatorItem this[int index]
        {
            get
            {
                return (NavigatorItem) this.List[index];
            }
            set
            {
                this.List[index] = value;
            }
        }