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

this() public method

public this ( string name ) : BypassElement
name string
return BypassElement
        public new BypassElement this[string name]
        {
            get
            {
                return (BypassElement)BaseGet(name);
            }
            set
            {
                if (BaseGet(name) != null)
                {
                    BaseRemove(name);
                }
                BaseAdd(value);
            }
        }
         

Same methods

BypassElementCollection::this ( int index ) : BypassElement