Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / Sys / System / Configuration / ConfigXmlDocument.cs / 1 / ConfigXmlDocument.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System.Configuration.Internal; using System.IO; using System.Xml; using System.Security.Permissions; // ConfigXmlDocument - the default Xml Document doesn't track line numbers, and line // numbers are necessary to display source on config errors. // These classes wrap corresponding System.Xml types and also carry // the necessary information for reporting filename / line numbers. // Note: these classes will go away if webdata ever decides to incorporate line numbers // into the default XML classes. This class could also go away if webdata brings back // the UserData property to hang any info off of any node. [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] public sealed class ConfigXmlDocument : XmlDocument, IConfigErrorInfo { XmlTextReader _reader; int _lineOffset; string _filename; int IConfigErrorInfo.LineNumber { get { if (_reader == null) { return 0; } if (_lineOffset > 0) { return _reader.LineNumber + _lineOffset - 1; } return _reader.LineNumber; } } public int LineNumber { get { return ((IConfigErrorInfo)this).LineNumber; } } public string Filename { get { return ConfigurationException.SafeFilename(_filename); } } string IConfigErrorInfo.Filename { get { return _filename; } } public override void Load(string filename) { _filename = filename; try { _reader = new XmlTextReader(filename); _reader.XmlResolver = null; base.Load(_reader); } finally { if (_reader != null) { _reader.Close(); _reader = null; } } } #if UNUSED_CODE internal XmlNode ReadConfigNode(string filename, XmlTextReader sourceReader) { _filename = filename; _reader = sourceReader; // pull line numbers from original reader try { return base.ReadNode(sourceReader); } finally { _reader = null; } } #endif public void LoadSingleElement(string filename, XmlTextReader sourceReader) { _filename = filename; _lineOffset = sourceReader.LineNumber; string outerXml = sourceReader.ReadOuterXml(); try { _reader = new XmlTextReader(new StringReader(outerXml), sourceReader.NameTable); base.Load(_reader); } finally { if (_reader != null) { _reader.Close(); _reader = null; } } } public override XmlAttribute CreateAttribute( string prefix, string localName, string namespaceUri ) { return new ConfigXmlAttribute( _filename, LineNumber, prefix, localName, namespaceUri, this ); } public override XmlElement CreateElement( string prefix, string localName, string namespaceUri) { return new ConfigXmlElement( _filename, LineNumber, prefix, localName, namespaceUri, this ); } public override XmlText CreateTextNode(String text) { return new ConfigXmlText( _filename, LineNumber, text, this ); } public override XmlCDataSection CreateCDataSection(String data) { return new ConfigXmlCDataSection( _filename, LineNumber, data, this ); } public override XmlComment CreateComment(String data) { return new ConfigXmlComment( _filename, LineNumber, data, this ); } public override XmlSignificantWhitespace CreateSignificantWhitespace(String data) { return new ConfigXmlSignificantWhitespace( _filename, LineNumber, data, this ); } public override XmlWhitespace CreateWhitespace(String data) { return new ConfigXmlWhitespace( _filename, LineNumber, data, this ); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System.Configuration.Internal; using System.IO; using System.Xml; using System.Security.Permissions; // ConfigXmlDocument - the default Xml Document doesn't track line numbers, and line // numbers are necessary to display source on config errors. // These classes wrap corresponding System.Xml types and also carry // the necessary information for reporting filename / line numbers. // Note: these classes will go away if webdata ever decides to incorporate line numbers // into the default XML classes. This class could also go away if webdata brings back // the UserData property to hang any info off of any node. [PermissionSet(SecurityAction.LinkDemand, Name="FullTrust")] public sealed class ConfigXmlDocument : XmlDocument, IConfigErrorInfo { XmlTextReader _reader; int _lineOffset; string _filename; int IConfigErrorInfo.LineNumber { get { if (_reader == null) { return 0; } if (_lineOffset > 0) { return _reader.LineNumber + _lineOffset - 1; } return _reader.LineNumber; } } public int LineNumber { get { return ((IConfigErrorInfo)this).LineNumber; } } public string Filename { get { return ConfigurationException.SafeFilename(_filename); } } string IConfigErrorInfo.Filename { get { return _filename; } } public override void Load(string filename) { _filename = filename; try { _reader = new XmlTextReader(filename); _reader.XmlResolver = null; base.Load(_reader); } finally { if (_reader != null) { _reader.Close(); _reader = null; } } } #if UNUSED_CODE internal XmlNode ReadConfigNode(string filename, XmlTextReader sourceReader) { _filename = filename; _reader = sourceReader; // pull line numbers from original reader try { return base.ReadNode(sourceReader); } finally { _reader = null; } } #endif public void LoadSingleElement(string filename, XmlTextReader sourceReader) { _filename = filename; _lineOffset = sourceReader.LineNumber; string outerXml = sourceReader.ReadOuterXml(); try { _reader = new XmlTextReader(new StringReader(outerXml), sourceReader.NameTable); base.Load(_reader); } finally { if (_reader != null) { _reader.Close(); _reader = null; } } } public override XmlAttribute CreateAttribute( string prefix, string localName, string namespaceUri ) { return new ConfigXmlAttribute( _filename, LineNumber, prefix, localName, namespaceUri, this ); } public override XmlElement CreateElement( string prefix, string localName, string namespaceUri) { return new ConfigXmlElement( _filename, LineNumber, prefix, localName, namespaceUri, this ); } public override XmlText CreateTextNode(String text) { return new ConfigXmlText( _filename, LineNumber, text, this ); } public override XmlCDataSection CreateCDataSection(String data) { return new ConfigXmlCDataSection( _filename, LineNumber, data, this ); } public override XmlComment CreateComment(String data) { return new ConfigXmlComment( _filename, LineNumber, data, this ); } public override XmlSignificantWhitespace CreateSignificantWhitespace(String data) { return new ConfigXmlSignificantWhitespace( _filename, LineNumber, data, this ); } public override XmlWhitespace CreateWhitespace(String data) { return new ConfigXmlWhitespace( _filename, LineNumber, data, this ); } } } // 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
- MembershipPasswordException.cs
- GeometryGroup.cs
- RadioButton.cs
- RijndaelCryptoServiceProvider.cs
- UnsafeNativeMethods.cs
- ColorConvertedBitmap.cs
- SqlDataSourceCommandParser.cs
- ObjectRef.cs
- Version.cs
- HttpResponseBase.cs
- Int32KeyFrameCollection.cs
- ClientTargetSection.cs
- SuppressMessageAttribute.cs
- EntityDataSourceDesigner.cs
- DataTableReaderListener.cs
- BooleanFunctions.cs
- BitVector32.cs
- FragmentQuery.cs
- PropertyChangeTracker.cs
- DockProviderWrapper.cs
- DistributedTransactionPermission.cs
- DomainUpDown.cs
- NumericUpDownAccelerationCollection.cs
- _ContextAwareResult.cs
- Italic.cs
- DataGridViewRow.cs
- ItemList.cs
- KeyGestureValueSerializer.cs
- WmlMobileTextWriter.cs
- ConfigXmlText.cs
- OrCondition.cs
- CommandDesigner.cs
- ProviderConnectionPointCollection.cs
- ListViewSortEventArgs.cs
- BasicHttpSecurityMode.cs
- Thread.cs
- CheckedListBox.cs
- AssemblyResourceLoader.cs
- ActivityTypeCodeDomSerializer.cs
- DbDataRecord.cs
- DragDrop.cs
- FieldToken.cs
- RNGCryptoServiceProvider.cs
- IItemProperties.cs
- DataGridViewTextBoxEditingControl.cs
- Bidi.cs
- ToolboxDataAttribute.cs
- WindowsSspiNegotiation.cs
- DataListGeneralPage.cs
- ellipse.cs
- ParameterElement.cs
- PropertyTabAttribute.cs
- ServicesExceptionNotHandledEventArgs.cs
- CreatingCookieEventArgs.cs
- ComboBox.cs
- OleDbFactory.cs
- RTLAwareMessageBox.cs
- MultiPropertyDescriptorGridEntry.cs
- HyperlinkAutomationPeer.cs
- AnonymousIdentificationModule.cs
- PopupEventArgs.cs
- ToolStripButton.cs
- TableLayoutStyle.cs
- CurrentTimeZone.cs
- InternalControlCollection.cs
- Symbol.cs
- UrlMappingsSection.cs
- CounterSample.cs
- CompositeKey.cs
- DataPager.cs
- InitialServerConnectionReader.cs
- TreeViewImageKeyConverter.cs
- GeneratedView.cs
- FieldBuilder.cs
- DefaultParameterValueAttribute.cs
- DelayedRegex.cs
- ObjectAnimationBase.cs
- XslTransformFileEditor.cs
- ClientFormsIdentity.cs
- DbConnectionPoolGroupProviderInfo.cs
- ConfigurationManager.cs
- AutomationProperties.cs
- Currency.cs
- UserControlBuildProvider.cs
- Library.cs
- LogSwitch.cs
- FlagsAttribute.cs
- ProcessProtocolHandler.cs
- MessageQueue.cs
- HtmlInputReset.cs
- DateTimePicker.cs
- FormViewInsertEventArgs.cs
- InputElement.cs
- CodeLinePragma.cs
- PolyQuadraticBezierSegmentFigureLogic.cs
- SafeNativeMethods.cs
- ToolStripDropDownClosingEventArgs.cs
- RemoteX509Token.cs
- StylusPointPropertyUnit.cs
- WindowsPen.cs