Code:
/ 4.0 / 4.0 / 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. /// ///// 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
- SqlRowUpdatedEvent.cs
- BaseParser.cs
- JsonDataContract.cs
- UpdateProgress.cs
- FormViewUpdatedEventArgs.cs
- QueryStoreStatusRequest.cs
- UpdatePanelControlTrigger.cs
- DefaultTextStoreTextComposition.cs
- FontClient.cs
- TextFormatterContext.cs
- ListParagraph.cs
- ExclusiveTcpListener.cs
- EventLogPermissionAttribute.cs
- LinkButton.cs
- EntityRecordInfo.cs
- PartialList.cs
- EndpointDiscoveryMetadata11.cs
- BindingBase.cs
- CaseInsensitiveHashCodeProvider.cs
- WebException.cs
- VerticalAlignConverter.cs
- FileRecordSequenceCompletedAsyncResult.cs
- ApplicationFileCodeDomTreeGenerator.cs
- InvalidWMPVersionException.cs
- XmlArrayItemAttribute.cs
- DataGridCheckBoxColumn.cs
- CookieProtection.cs
- EntityDesignerBuildProvider.cs
- MaskedTextBox.cs
- StylusButtonCollection.cs
- Attributes.cs
- Polyline.cs
- NameGenerator.cs
- BoundField.cs
- AnnotationHelper.cs
- SmtpAuthenticationManager.cs
- IpcChannelHelper.cs
- MutexSecurity.cs
- WebPartMovingEventArgs.cs
- MessagePropertyFilter.cs
- FloatUtil.cs
- CollectionBuilder.cs
- AnchoredBlock.cs
- Vector3dCollection.cs
- Identity.cs
- AttachInfo.cs
- TaskExtensions.cs
- TextSearch.cs
- LineGeometry.cs
- AssociationType.cs
- Exceptions.cs
- glyphs.cs
- IsolatedStoragePermission.cs
- RangeBase.cs
- figurelength.cs
- StringOutput.cs
- XsdValidatingReader.cs
- ScalarConstant.cs
- CodeConstructor.cs
- FunctionImportMapping.cs
- TearOffProxy.cs
- UndoManager.cs
- HandlerBase.cs
- TableCellCollection.cs
- UnknownWrapper.cs
- MouseGesture.cs
- SamlAssertionDirectKeyIdentifierClause.cs
- XmlParserContext.cs
- DataBindingCollection.cs
- SqlException.cs
- UnsafeNativeMethods.cs
- DataGridSortCommandEventArgs.cs
- DropSource.cs
- ToolStripDropDown.cs
- TableParagraph.cs
- CopyEncoder.cs
- AnnotationHelper.cs
- ControlPropertyNameConverter.cs
- DirectoryNotFoundException.cs
- DetailsViewDeleteEventArgs.cs
- TextSchema.cs
- ObjectStateFormatter.cs
- QueryInterceptorAttribute.cs
- MsdtcClusterUtils.cs
- ListBindingConverter.cs
- DataSourceSerializationException.cs
- FieldMetadata.cs
- SpellerHighlightLayer.cs
- Wizard.cs
- AssertFilter.cs
- CustomErrorCollection.cs
- ContextBase.cs
- EnterpriseServicesHelper.cs
- FixedPage.cs
- EntityDesignerUtils.cs
- DefaultMemberAttribute.cs
- SchemaNames.cs
- LogicalTreeHelper.cs
- XmlDocumentSerializer.cs
- XamlVector3DCollectionSerializer.cs