Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Sys / System / Configuration / NameValueFileSectionHandler.cs / 1 / 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
- SHA512.cs
- ClientRolePrincipal.cs
- SpoolingTaskBase.cs
- SizeAnimation.cs
- TextDecoration.cs
- RubberbandSelector.cs
- HttpModuleCollection.cs
- SynchronizationHandlesCodeDomSerializer.cs
- HashAlgorithm.cs
- DataGridViewColumnCollection.cs
- DataSvcMapFileSerializer.cs
- XmlSchemaGroupRef.cs
- HtmlForm.cs
- DataGridViewSelectedCellCollection.cs
- log.cs
- RefreshPropertiesAttribute.cs
- ClientRolePrincipal.cs
- ReadContentAsBinaryHelper.cs
- ColorPalette.cs
- PointKeyFrameCollection.cs
- DefaultValueConverter.cs
- ExecutedRoutedEventArgs.cs
- CompositeScriptReference.cs
- MouseButton.cs
- WebServiceEnumData.cs
- StartUpEventArgs.cs
- LocationReference.cs
- OutputCacheProfileCollection.cs
- XmlObjectSerializer.cs
- CustomAttributeFormatException.cs
- MarginCollapsingState.cs
- WebPartDisplayModeCancelEventArgs.cs
- DatagridviewDisplayedBandsData.cs
- SplayTreeNode.cs
- PointHitTestParameters.cs
- LoginName.cs
- ListViewHitTestInfo.cs
- CodeDirectoryCompiler.cs
- MembershipSection.cs
- TimelineGroup.cs
- ChannelBuilder.cs
- NavigatingCancelEventArgs.cs
- DataKey.cs
- VariableExpressionConverter.cs
- InstanceDescriptor.cs
- Constraint.cs
- StringInfo.cs
- WebPartManager.cs
- MediaTimeline.cs
- ReadOnlyDataSource.cs
- dataobject.cs
- AutomationIdentifier.cs
- DynamicScriptObject.cs
- SubtreeProcessor.cs
- FormParameter.cs
- TableAdapterManagerGenerator.cs
- DesignTimeTemplateParser.cs
- InstanceDataCollection.cs
- EDesignUtil.cs
- TreeNodeCollectionEditor.cs
- SmtpReplyReaderFactory.cs
- _ListenerResponseStream.cs
- TokenFactoryFactory.cs
- WindowsSecurityToken.cs
- ETagAttribute.cs
- BitmapData.cs
- DataTablePropertyDescriptor.cs
- DataGridViewBand.cs
- basenumberconverter.cs
- DirectoryObjectSecurity.cs
- ConditionedDesigner.cs
- OLEDB_Util.cs
- KeyValueSerializer.cs
- PathFigure.cs
- WindowsTab.cs
- _HeaderInfo.cs
- StylusLogic.cs
- ConfigPathUtility.cs
- CodeCompileUnit.cs
- initElementDictionary.cs
- SectionRecord.cs
- ActivityExecutor.cs
- XPathDocument.cs
- _SafeNetHandles.cs
- CodeFieldReferenceExpression.cs
- Journal.cs
- COM2ExtendedUITypeEditor.cs
- TextTrailingCharacterEllipsis.cs
- RenderingBiasValidation.cs
- SecurityException.cs
- ToolStripProfessionalLowResolutionRenderer.cs
- PerformanceCounterManager.cs
- VerticalAlignConverter.cs
- Vector3DValueSerializer.cs
- FormsAuthenticationModule.cs
- WebUtility.cs
- PopupControlService.cs
- SiteMap.cs
- ManualResetEvent.cs
- ExeContext.cs