Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Configuration / System / Configuration / ProviderCollection.cs / 1305376 / 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
- DependencyPropertyKey.cs
- DataDocumentXPathNavigator.cs
- HttpListenerException.cs
- Label.cs
- WrappedIUnknown.cs
- UrlPropertyAttribute.cs
- MetadataUtilsSmi.cs
- DoubleLink.cs
- SmiGettersStream.cs
- unsafenativemethodsother.cs
- GacUtil.cs
- DataGridViewColumnDividerDoubleClickEventArgs.cs
- DataListCommandEventArgs.cs
- NavigateUrlConverter.cs
- WebPartZoneCollection.cs
- CatalogPartChrome.cs
- COM2PropertyBuilderUITypeEditor.cs
- AnnotationMap.cs
- ResourcesBuildProvider.cs
- CookieProtection.cs
- XmlBaseReader.cs
- EventLogConfiguration.cs
- Interlocked.cs
- InlinedLocationReference.cs
- DiagnosticsConfiguration.cs
- CookielessHelper.cs
- AddInController.cs
- ToolStripDropDownDesigner.cs
- WebEvents.cs
- CharKeyFrameCollection.cs
- HttpAsyncResult.cs
- SchemaObjectWriter.cs
- WorkflowRuntimeEndpoint.cs
- BuildProviderAppliesToAttribute.cs
- PrefixHandle.cs
- CapabilitiesUse.cs
- Int32AnimationUsingKeyFrames.cs
- ExpressionList.cs
- XmlnsDefinitionAttribute.cs
- TextView.cs
- PaperSize.cs
- mediapermission.cs
- SoundPlayerAction.cs
- HttpBrowserCapabilitiesBase.cs
- HttpWrapper.cs
- ChannelSinkStacks.cs
- AssemblyCollection.cs
- XmlWhitespace.cs
- DataSourceHelper.cs
- SelectedDatesCollection.cs
- COAUTHIDENTITY.cs
- CodeAccessPermission.cs
- InstanceDataCollectionCollection.cs
- SrgsDocumentParser.cs
- SafeFileMappingHandle.cs
- PageThemeCodeDomTreeGenerator.cs
- XmlDesigner.cs
- SequenceDesigner.xaml.cs
- TextOnlyOutput.cs
- OrderPreservingSpoolingTask.cs
- FrameworkElementFactoryMarkupObject.cs
- NavigatorInput.cs
- cookie.cs
- ValidationEventArgs.cs
- RadioButtonRenderer.cs
- XmlLanguage.cs
- Encoder.cs
- NamespaceCollection.cs
- JoinGraph.cs
- ThreadStartException.cs
- COAUTHINFO.cs
- ChildTable.cs
- DataSourceControlBuilder.cs
- shaper.cs
- NavigationFailedEventArgs.cs
- DocumentPageView.cs
- DbTransaction.cs
- UIElement3D.cs
- GroupQuery.cs
- ChannelReliableSession.cs
- DummyDataSource.cs
- AnnouncementEndpointElement.cs
- PackagingUtilities.cs
- SqlConnectionPoolProviderInfo.cs
- VirtualPathProvider.cs
- XPathExpr.cs
- Compiler.cs
- DesignOnlyAttribute.cs
- BuildProvider.cs
- Win32.cs
- PermissionToken.cs
- OutputScopeManager.cs
- FlowDocumentPaginator.cs
- VirtualizedItemPattern.cs
- initElementDictionary.cs
- OdbcErrorCollection.cs
- SpeechRecognitionEngine.cs
- ThreadAbortException.cs
- NativeMethods.cs
- ContextStaticAttribute.cs