System.Net.Configuration.BypassElementCollection.this C# (CSharp) 메소드

this() 공개 메소드

public this ( string name ) : BypassElement
name string
리턴 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