Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Configuration / System / Configuration / ProviderCollection.cs / 1 / ProviderCollection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration.Provider { using System.Collections; using System.Collections.Specialized; using System.Runtime.Serialization; ////// public class ProviderCollection : IEnumerable, ICollection //, ICloneable { private Hashtable _Hashtable = null; private bool _ReadOnly = false; //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// public ProviderCollection() { _Hashtable = new Hashtable(10, StringComparer.OrdinalIgnoreCase); } //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// public virtual void Add(ProviderBase provider) { if (_ReadOnly) throw new NotSupportedException(SR.GetString(SR.CollectionReadOnly)); if (provider == null) throw new ArgumentNullException("provider"); if (provider.Name == null || provider.Name.Length < 1) throw new ArgumentException(SR.GetString(SR.Config_provider_name_null_or_empty)); _Hashtable.Add(provider.Name, provider); } //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// public void Remove(string name) { if (_ReadOnly) throw new NotSupportedException(SR.GetString(SR.CollectionReadOnly)); _Hashtable.Remove(name); } //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// public ProviderBase this[string name] { get { return _Hashtable[name] as ProviderBase; } } //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// public IEnumerator GetEnumerator() { return _Hashtable.Values.GetEnumerator(); } //public object Clone(){ // return new ProviderCollection(_Indices, _Values); //} //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// public void SetReadOnly() { if (_ReadOnly) return; _ReadOnly = true; } //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// public void Clear() { if (_ReadOnly) throw new NotSupportedException(SR.GetString(SR.CollectionReadOnly)); _Hashtable.Clear(); } //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// // ICollection interface public int Count { get { return _Hashtable.Count; }} public bool IsSynchronized { get { return false; } } public object SyncRoot { get { return this; } } public void CopyTo(ProviderBase[] array, int index) { ((ICollection) this).CopyTo(array, index); } void ICollection.CopyTo(Array array, int index) { _Hashtable.Values.CopyTo(array, index); } #if UNUSED_CODE ///////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////// private ProviderCollection(Hashtable h) { _Hashtable = (Hashtable)h.Clone(); } #endif } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //[To be supplied.] ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration.Provider { using System.Collections; using System.Collections.Specialized; using System.Runtime.Serialization; ////// public class ProviderCollection : IEnumerable, ICollection //, ICloneable { private Hashtable _Hashtable = null; private bool _ReadOnly = false; //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// public ProviderCollection() { _Hashtable = new Hashtable(10, StringComparer.OrdinalIgnoreCase); } //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// public virtual void Add(ProviderBase provider) { if (_ReadOnly) throw new NotSupportedException(SR.GetString(SR.CollectionReadOnly)); if (provider == null) throw new ArgumentNullException("provider"); if (provider.Name == null || provider.Name.Length < 1) throw new ArgumentException(SR.GetString(SR.Config_provider_name_null_or_empty)); _Hashtable.Add(provider.Name, provider); } //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// public void Remove(string name) { if (_ReadOnly) throw new NotSupportedException(SR.GetString(SR.CollectionReadOnly)); _Hashtable.Remove(name); } //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// public ProviderBase this[string name] { get { return _Hashtable[name] as ProviderBase; } } //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// public IEnumerator GetEnumerator() { return _Hashtable.Values.GetEnumerator(); } //public object Clone(){ // return new ProviderCollection(_Indices, _Values); //} //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// public void SetReadOnly() { if (_ReadOnly) return; _ReadOnly = true; } //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// public void Clear() { if (_ReadOnly) throw new NotSupportedException(SR.GetString(SR.CollectionReadOnly)); _Hashtable.Clear(); } //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// // ICollection interface public int Count { get { return _Hashtable.Count; }} public bool IsSynchronized { get { return false; } } public object SyncRoot { get { return this; } } public void CopyTo(ProviderBase[] array, int index) { ((ICollection) this).CopyTo(array, index); } void ICollection.CopyTo(Array array, int index) { _Hashtable.Values.CopyTo(array, index); } #if UNUSED_CODE ///////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////// private ProviderCollection(Hashtable h) { _Hashtable = (Hashtable)h.Clone(); } #endif } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- PropertyRef.cs
- HttpTransportSecurity.cs
- StyleXamlParser.cs
- TemplateControlParser.cs
- InlineObject.cs
- ToolStripDropTargetManager.cs
- DependencyPropertyDescriptor.cs
- MdiWindowListItemConverter.cs
- AutomationProperty.cs
- DataGridState.cs
- NonBatchDirectoryCompiler.cs
- DynamicILGenerator.cs
- CheckBoxBaseAdapter.cs
- HttpCookiesSection.cs
- EventSetter.cs
- SqlDataSourceStatusEventArgs.cs
- SEHException.cs
- TextEditor.cs
- ErrorReporting.cs
- PreProcessInputEventArgs.cs
- CompletionCallbackWrapper.cs
- SrgsSemanticInterpretationTag.cs
- XmlDataImplementation.cs
- MobileTemplatedControlDesigner.cs
- VisualBasicImportReference.cs
- TimelineGroup.cs
- XmlSchemaIdentityConstraint.cs
- DataGridViewDataConnection.cs
- EntityDataSourceConfigureObjectContext.cs
- WaveHeader.cs
- DrawTreeNodeEventArgs.cs
- WinEventWrap.cs
- mactripleDES.cs
- Sql8ExpressionRewriter.cs
- HttpHeaderCollection.cs
- Literal.cs
- SecUtil.cs
- QueryStringConverter.cs
- StringFormat.cs
- TextEditorTables.cs
- MarginCollapsingState.cs
- XmlSchemaException.cs
- OracleTimeSpan.cs
- PinnedBufferMemoryStream.cs
- TraceProvider.cs
- Model3DGroup.cs
- HiddenFieldPageStatePersister.cs
- DecoderBestFitFallback.cs
- ProcessHostFactoryHelper.cs
- ItemDragEvent.cs
- DataColumn.cs
- DBSqlParserTable.cs
- SafeHandles.cs
- RadioButton.cs
- HashJoinQueryOperatorEnumerator.cs
- Bezier.cs
- autovalidator.cs
- SqlTransaction.cs
- DataGridTableStyleMappingNameEditor.cs
- DocumentNUp.cs
- ClassHandlersStore.cs
- BindingList.cs
- ErrorHandlingReceiver.cs
- ComboBoxRenderer.cs
- WebPartCatalogAddVerb.cs
- ServiceOperation.cs
- ParentUndoUnit.cs
- Label.cs
- Match.cs
- HtmlInputHidden.cs
- GridProviderWrapper.cs
- XPathBuilder.cs
- LazyLoadBehavior.cs
- LineGeometry.cs
- AuthenticationConfig.cs
- ActivityExecutionContext.cs
- _PooledStream.cs
- SharedRuntimeState.cs
- DiffuseMaterial.cs
- Serializer.cs
- MdiWindowListStrip.cs
- XmlTextReader.cs
- WindowsListViewGroupSubsetLink.cs
- XmlNodeChangedEventArgs.cs
- Light.cs
- SectionInformation.cs
- HostDesigntimeLicenseContext.cs
- BitmapEffect.cs
- ComPersistableTypeElement.cs
- AttributeTable.cs
- HtmlUtf8RawTextWriter.cs
- DataGridHeadersVisibilityToVisibilityConverter.cs
- DataGridComponentEditor.cs
- StylusPlugInCollection.cs
- Pick.cs
- sqlcontext.cs
- SQLMoneyStorage.cs
- Rotation3DAnimation.cs
- ResourceSet.cs
- JsonReaderDelegator.cs