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

this() public method

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

Same methods

AuthenticationModuleElementCollection::this ( int index ) : AuthenticationModuleElement