Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Sys / System / Configuration / NameValueFileSectionHandler.cs / 1305376 / NameValueFileSectionHandler.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System.Configuration.Internal; using System.IO; using System.Xml; using System.Runtime.Versioning; ////// /// public class NameValueFileSectionHandler : IConfigurationSectionHandler { [ResourceExposure(ResourceScope.None)] [ResourceConsumption(ResourceScope.Machine, ResourceScope.Machine)] public object Create(object parent, object configContext, XmlNode section) { object result = parent; // parse XML XmlNode fileAttribute = section.Attributes.RemoveNamedItem("file"); result = NameValueSectionHandler.CreateStatic(result, section); if (fileAttribute != null && fileAttribute.Value.Length != 0) { string filename = null; filename = fileAttribute.Value; IConfigErrorInfo configXmlNode = fileAttribute as IConfigErrorInfo; if (configXmlNode == null) { return null; } string configFile = configXmlNode.Filename; string directory = Path.GetDirectoryName(configFile); string sourceFileFullPath = Path.Combine(directory, filename); if (File.Exists(sourceFileFullPath)) { ConfigXmlDocument doc = new ConfigXmlDocument(); try { doc.Load(sourceFileFullPath); } catch (XmlException e) { throw new ConfigurationErrorsException(e.Message, e, sourceFileFullPath, e.LineNumber); } if (section.Name != doc.DocumentElement.Name) { throw new ConfigurationErrorsException( SR.GetString(SR.Config_name_value_file_section_file_invalid_root, section.Name), doc.DocumentElement); } result = NameValueSectionHandler.CreateStatic(result, doc.DocumentElement); } } return result; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// This section handler allows <appSettings file="user.config" /> /// The file pointed to by the file= attribute is read as if it is /// an appSettings section in the config file. /// Note: the user.config file must have its root element match the /// section referring to it. So if appSettings has a file="user.config" /// attribute the root element in user.config must also be named appSettings. /// ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ContentFilePart.cs
- ProcessHost.cs
- CacheEntry.cs
- SessionStateModule.cs
- TextParagraphView.cs
- EncodingNLS.cs
- ServicePointManagerElement.cs
- latinshape.cs
- ElementHostPropertyMap.cs
- XmlSchemaType.cs
- CatalogPart.cs
- TableLayoutPanelDesigner.cs
- CircleEase.cs
- HScrollProperties.cs
- OutputCacheProfileCollection.cs
- CodeGeneratorOptions.cs
- TextContainerHelper.cs
- DataRecordObjectView.cs
- DataGridViewColumnEventArgs.cs
- CodeGeneratorAttribute.cs
- HttpUnhandledOperationInvoker.cs
- DBAsyncResult.cs
- MinMaxParagraphWidth.cs
- AssemblyCollection.cs
- BamlRecords.cs
- OdbcConnection.cs
- TrackingLocationCollection.cs
- UInt64.cs
- Menu.cs
- Evidence.cs
- CompareInfo.cs
- ActivityContext.cs
- MsmqOutputSessionChannel.cs
- XmlILConstructAnalyzer.cs
- FormParameter.cs
- OrderedHashRepartitionStream.cs
- BindingMemberInfo.cs
- DbConnectionStringCommon.cs
- VisualTarget.cs
- NetworkInformationException.cs
- followingquery.cs
- EntityFrameworkVersions.cs
- InvariantComparer.cs
- JpegBitmapEncoder.cs
- VisualTarget.cs
- Attachment.cs
- RadioButtonFlatAdapter.cs
- ServiceCredentialsElement.cs
- StickyNote.cs
- DBCSCodePageEncoding.cs
- ProfileGroupSettings.cs
- TranslateTransform3D.cs
- SpnegoTokenAuthenticator.cs
- PerfCounterSection.cs
- SmtpReplyReader.cs
- AttributeCollection.cs
- Expression.cs
- Error.cs
- TokenBasedSet.cs
- DataRelationCollection.cs
- ChannelBuilder.cs
- CustomBindingCollectionElement.cs
- TemplateNameScope.cs
- SoapSchemaExporter.cs
- CompositeDispatchFormatter.cs
- EntityType.cs
- DefaultValueTypeConverter.cs
- XmlTextEncoder.cs
- XmlChildEnumerator.cs
- DataSourceSerializationException.cs
- PersonalizationStateInfo.cs
- QilVisitor.cs
- ListControlConvertEventArgs.cs
- AuthenticationSchemesHelper.cs
- DrawingContextFlattener.cs
- D3DImage.cs
- VScrollProperties.cs
- DataGridViewCellFormattingEventArgs.cs
- HtmlInputPassword.cs
- Triangle.cs
- XhtmlBasicPanelAdapter.cs
- DebugTraceHelper.cs
- ExceptionHandler.cs
- DoubleAnimationUsingKeyFrames.cs
- DataGridViewRowPrePaintEventArgs.cs
- ImageAttributes.cs
- MediaSystem.cs
- AttributeSetAction.cs
- Compress.cs
- RenderingEventArgs.cs
- HashStream.cs
- LassoSelectionBehavior.cs
- StrongNameHelpers.cs
- MetabaseServerConfig.cs
- DataServiceQueryException.cs
- IPHostEntry.cs
- CircleEase.cs
- Light.cs
- ImageMap.cs
- Path.cs