Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Configuration / System / Configuration / ProviderBase.cs / 1 / ProviderBase.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration.Provider { using System.Collections.Specialized; using System.Runtime.Serialization; public abstract class ProviderBase { private string _name; private string _Description; public virtual string Name { get { return _name; } } public virtual string Description { get { return string.IsNullOrEmpty(_Description) ? Name : _Description; } } public virtual void Initialize(string name, NameValueCollection config) { lock (this) { if (_Initialized) throw new InvalidOperationException(SR.GetString(SR.Provider_Already_Initialized)); _Initialized = true; } if (name == null) throw new ArgumentNullException("name"); if (name.Length == 0) throw new ArgumentException(SR.GetString(SR.Config_provider_name_null_or_empty), "name"); _name = name; if (config != null) { _Description = config["description"]; config.Remove("description"); } } private bool _Initialized; } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration.Provider { using System.Collections.Specialized; using System.Runtime.Serialization; public abstract class ProviderBase { private string _name; private string _Description; public virtual string Name { get { return _name; } } public virtual string Description { get { return string.IsNullOrEmpty(_Description) ? Name : _Description; } } public virtual void Initialize(string name, NameValueCollection config) { lock (this) { if (_Initialized) throw new InvalidOperationException(SR.GetString(SR.Provider_Already_Initialized)); _Initialized = true; } if (name == null) throw new ArgumentNullException("name"); if (name.Length == 0) throw new ArgumentException(SR.GetString(SR.Config_provider_name_null_or_empty), "name"); _name = name; if (config != null) { _Description = config["description"]; config.Remove("description"); } } private bool _Initialized; } } // 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
- BaseUriHelper.cs
- XamlWriter.cs
- RealizationDrawingContextWalker.cs
- TaiwanLunisolarCalendar.cs
- FunctionDetailsReader.cs
- validationstate.cs
- DataServiceClientException.cs
- CancellationTokenSource.cs
- IList.cs
- SByteStorage.cs
- WebInvokeAttribute.cs
- FileLogRecordStream.cs
- CfgParser.cs
- HtmlInputSubmit.cs
- UnitySerializationHolder.cs
- TextMarkerSource.cs
- MessageDecoder.cs
- TransformConverter.cs
- BaseParaClient.cs
- ILGenerator.cs
- DataGridRowAutomationPeer.cs
- RedistVersionInfo.cs
- PartialArray.cs
- PrintSchema.cs
- InkCanvasFeedbackAdorner.cs
- SafeLibraryHandle.cs
- SmiMetaData.cs
- ContourSegment.cs
- DockProviderWrapper.cs
- UIPropertyMetadata.cs
- HtmlInputControl.cs
- SqlClientMetaDataCollectionNames.cs
- AppSettingsReader.cs
- UnmanagedMemoryStreamWrapper.cs
- StoreItemCollection.cs
- ChangeNode.cs
- XmlDataImplementation.cs
- MultiPageTextView.cs
- CodeMethodReturnStatement.cs
- SocketException.cs
- ValidationEventArgs.cs
- smtpconnection.cs
- Operators.cs
- SymDocumentType.cs
- StylusLogic.cs
- WebPartHeaderCloseVerb.cs
- InkCanvasSelection.cs
- MarkupCompiler.cs
- EventManager.cs
- Typography.cs
- QuaternionValueSerializer.cs
- Int32EqualityComparer.cs
- SuspendDesigner.cs
- ObjectCloneHelper.cs
- XmlSchemaElement.cs
- SqlDataSourceEnumerator.cs
- PerspectiveCamera.cs
- CompositeFontParser.cs
- LogSwitch.cs
- BaseProcessProtocolHandler.cs
- HttpCookieCollection.cs
- ExtractCollection.cs
- DbSourceParameterCollection.cs
- JsonDeserializer.cs
- TemplateGroupCollection.cs
- PasswordRecoveryAutoFormat.cs
- DataGridTextBox.cs
- XmlSchemaObject.cs
- Rotation3DKeyFrameCollection.cs
- Base64Stream.cs
- HMACSHA512.cs
- Timer.cs
- SupportsPreviewControlAttribute.cs
- InfiniteIntConverter.cs
- SoapElementAttribute.cs
- UInt16Converter.cs
- RemoteWebConfigurationHostServer.cs
- CodeDomSerializerBase.cs
- CompilationSection.cs
- ValuePattern.cs
- Encoder.cs
- XPathCompileException.cs
- WebPartDescription.cs
- RelationalExpressions.cs
- PointLightBase.cs
- ReferencedCollectionType.cs
- EasingFunctionBase.cs
- TreeViewEvent.cs
- LightweightCodeGenerator.cs
- HttpBrowserCapabilitiesWrapper.cs
- StylusOverProperty.cs
- ToolStripContentPanelDesigner.cs
- OutputCacheSettingsSection.cs
- StrokeDescriptor.cs
- XmlSchemaSimpleTypeRestriction.cs
- ToolStripOverflow.cs
- PipelineModuleStepContainer.cs
- XsltException.cs
- EntityConnectionStringBuilder.cs
- IdnMapping.cs