System.Net.Configuration.BypassElementCollection.this C# (CSharp) Method

this() public method

public this ( int index ) : BypassElement
index int
return BypassElement
        public BypassElement this[int index]
        {
            get
            {
                return (BypassElement)BaseGet(index);
            }
            set
            {
                if (BaseGet(index) != null)
                {
                    BaseRemoveAt(index);
                }
                BaseAdd(index,value);
            }
        }

Same methods

BypassElementCollection::this ( string name ) : BypassElement