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

Remove() public method

public Remove ( AuthenticationModuleElement element ) : void
element AuthenticationModuleElement
return void
        public void Remove(AuthenticationModuleElement element) 
        {
            if (element == null)
                throw new ArgumentNullException("element");
            BaseRemove(element.Key);
        }

Same methods

AuthenticationModuleElementCollection::Remove ( string name ) : void