System.Configuration.Provider.ProviderCollection.Clear C# (CSharp) Method

Clear() public method

public Clear ( ) : void
return void
        public void Clear()
        {
            if (_ReadOnly)
                throw new NotSupportedException(SR.GetString(SR.CollectionReadOnly));
            _Hashtable.Clear();
        }