newtelligence.DasBlog.Web.Services.Rsd.RssServiceCollection.this C# (CSharp) Method

this() public method

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