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

this() public method

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