Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Net / System / Net / Configuration / ConnectionManagementSection.cs / 1 / ConnectionManagementSection.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Configuration { using System.Configuration; using System.Collections; using System.Threading; public sealed class ConnectionManagementSection : ConfigurationSection { public ConnectionManagementSection() { this.properties.Add(this.connectionManagement); } [ConfigurationProperty("", IsDefaultCollection = true)] public ConnectionManagementElementCollection ConnectionManagement { get { return (ConnectionManagementElementCollection)this[this.connectionManagement]; } } protected override ConfigurationPropertyCollection Properties { get { return this.properties; } } ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); readonly ConfigurationProperty connectionManagement = new ConfigurationProperty(null, typeof(ConnectionManagementElementCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); } internal sealed class ConnectionManagementSectionInternal { internal ConnectionManagementSectionInternal(ConnectionManagementSection section) { if (section.ConnectionManagement.Count > 0) { this.connectionManagement = new Hashtable(section.ConnectionManagement.Count); foreach(ConnectionManagementElement connectionManagementElement in section.ConnectionManagement) { this.connectionManagement[connectionManagementElement.Address] = connectionManagementElement.MaxConnection; } } } internal Hashtable ConnectionManagement { get { Hashtable retval = this.connectionManagement; if (retval == null) { retval = new Hashtable(); } return retval; } } internal static object ClassSyncObject { get { if (classSyncObject == null) { object o = new object(); Interlocked.CompareExchange(ref classSyncObject, o, null); } return classSyncObject; } } static internal ConnectionManagementSectionInternal GetSection() { lock (ConnectionManagementSectionInternal.ClassSyncObject) { ConnectionManagementSection section = PrivilegedConfigurationManager.GetSection(ConfigurationStrings.ConnectionManagementSectionPath) as ConnectionManagementSection; if (section == null) return null; return new ConnectionManagementSectionInternal(section); } } Hashtable connectionManagement = null; static object classSyncObject = null; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Net.Configuration { using System.Configuration; using System.Collections; using System.Threading; public sealed class ConnectionManagementSection : ConfigurationSection { public ConnectionManagementSection() { this.properties.Add(this.connectionManagement); } [ConfigurationProperty("", IsDefaultCollection = true)] public ConnectionManagementElementCollection ConnectionManagement { get { return (ConnectionManagementElementCollection)this[this.connectionManagement]; } } protected override ConfigurationPropertyCollection Properties { get { return this.properties; } } ConfigurationPropertyCollection properties = new ConfigurationPropertyCollection(); readonly ConfigurationProperty connectionManagement = new ConfigurationProperty(null, typeof(ConnectionManagementElementCollection), null, ConfigurationPropertyOptions.IsDefaultCollection); } internal sealed class ConnectionManagementSectionInternal { internal ConnectionManagementSectionInternal(ConnectionManagementSection section) { if (section.ConnectionManagement.Count > 0) { this.connectionManagement = new Hashtable(section.ConnectionManagement.Count); foreach(ConnectionManagementElement connectionManagementElement in section.ConnectionManagement) { this.connectionManagement[connectionManagementElement.Address] = connectionManagementElement.MaxConnection; } } } internal Hashtable ConnectionManagement { get { Hashtable retval = this.connectionManagement; if (retval == null) { retval = new Hashtable(); } return retval; } } internal static object ClassSyncObject { get { if (classSyncObject == null) { object o = new object(); Interlocked.CompareExchange(ref classSyncObject, o, null); } return classSyncObject; } } static internal ConnectionManagementSectionInternal GetSection() { lock (ConnectionManagementSectionInternal.ClassSyncObject) { ConnectionManagementSection section = PrivilegedConfigurationManager.GetSection(ConfigurationStrings.ConnectionManagementSectionPath) as ConnectionManagementSection; if (section == null) return null; return new ConnectionManagementSectionInternal(section); } } Hashtable connectionManagement = null; static object classSyncObject = null; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- NeedSkipTokenVisitor.cs
- ReferencedAssembly.cs
- NonParentingControl.cs
- TableParagraph.cs
- DriveNotFoundException.cs
- ModuleConfigurationInfo.cs
- MaskedTextProvider.cs
- Convert.cs
- HtmlInputCheckBox.cs
- ImageFormat.cs
- VisualBrush.cs
- TaskFactory.cs
- Int64Converter.cs
- ToolStripSettings.cs
- SmiEventStream.cs
- WebConfigurationFileMap.cs
- BinarySerializer.cs
- ClassHandlersStore.cs
- PreloadedPackages.cs
- PlainXmlSerializer.cs
- SapiRecoInterop.cs
- entitydatasourceentitysetnameconverter.cs
- FindRequestContext.cs
- BufferedStream.cs
- DiscoveryClientDocuments.cs
- DataTableTypeConverter.cs
- BitmapFrameDecode.cs
- DoubleConverter.cs
- XmlILCommand.cs
- HostedAspNetEnvironment.cs
- LayoutTable.cs
- XNodeValidator.cs
- StaticExtension.cs
- IndexedString.cs
- FileNotFoundException.cs
- RandomDelayQueuedSendsAsyncResult.cs
- TraceEventCache.cs
- FlowDocumentScrollViewerAutomationPeer.cs
- NativeObjectSecurity.cs
- LayoutSettings.cs
- SafeThemeHandle.cs
- CompositeFontInfo.cs
- TextHidden.cs
- WinFormsSecurity.cs
- FontFamily.cs
- HtmlMeta.cs
- StyleXamlParser.cs
- Evaluator.cs
- ValueHandle.cs
- GeometryValueSerializer.cs
- XPathDocumentIterator.cs
- HttpWriter.cs
- Label.cs
- StringHelper.cs
- ResourceDescriptionAttribute.cs
- SystemException.cs
- ControlEvent.cs
- MergeEnumerator.cs
- ContractComponent.cs
- NotifyCollectionChangedEventArgs.cs
- ContentDisposition.cs
- RawContentTypeMapper.cs
- _RequestCacheProtocol.cs
- TemplateComponentConnector.cs
- ExtenderProvidedPropertyAttribute.cs
- Operators.cs
- SHA384Managed.cs
- TimeSpanValidator.cs
- VarRemapper.cs
- ApplicationException.cs
- InputLanguageCollection.cs
- MarginCollapsingState.cs
- SchemaImporterExtensionsSection.cs
- TextTreeUndoUnit.cs
- MultiSelectRootGridEntry.cs
- MsmqProcessProtocolHandler.cs
- UIElementAutomationPeer.cs
- BinaryReader.cs
- QueryActivatableWorkflowsCommand.cs
- JsonSerializer.cs
- CardSpaceShim.cs
- SectionInformation.cs
- ChannelCacheSettings.cs
- DirectionalLight.cs
- ReachDocumentReferenceCollectionSerializer.cs
- BoundPropertyEntry.cs
- WebSysDisplayNameAttribute.cs
- HttpPostServerProtocol.cs
- AutomationPatternInfo.cs
- SessionStateItemCollection.cs
- ScaleTransform.cs
- BuildResult.cs
- ValueCollectionParameterReader.cs
- WindowsAltTab.cs
- ProjectionCamera.cs
- InvokePatternIdentifiers.cs
- XmlFormatReaderGenerator.cs
- ProgressBarRenderer.cs
- NativeMethods.cs
- BindableAttribute.cs