Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Configuration / System / Configuration / ErrorInfoXmlDocument.cs / 1 / ErrorInfoXmlDocument.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; // ErrorInfoXmlDocument - 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. internal sealed class ErrorInfoXmlDocument : 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; } } internal int LineNumber { get { return ((IConfigErrorInfo)this).LineNumber; } } 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; } } } private void LoadFromConfigXmlReader(ConfigXmlReader reader) { IConfigErrorInfo err = (IConfigErrorInfo) reader; _filename = err.Filename; _lineOffset = err.LineNumber + 1; try { _reader = reader; base.Load(_reader); } finally { if (_reader != null) { _reader.Close(); _reader = null; } } } static internal XmlNode CreateSectionXmlNode(ConfigXmlReader reader) { ErrorInfoXmlDocument doc = new ErrorInfoXmlDocument(); doc.LoadFromConfigXmlReader(reader); XmlNode xmlNode = doc.DocumentElement; return xmlNode; } 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; // ErrorInfoXmlDocument - 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. internal sealed class ErrorInfoXmlDocument : 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; } } internal int LineNumber { get { return ((IConfigErrorInfo)this).LineNumber; } } 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; } } } private void LoadFromConfigXmlReader(ConfigXmlReader reader) { IConfigErrorInfo err = (IConfigErrorInfo) reader; _filename = err.Filename; _lineOffset = err.LineNumber + 1; try { _reader = reader; base.Load(_reader); } finally { if (_reader != null) { _reader.Close(); _reader = null; } } } static internal XmlNode CreateSectionXmlNode(ConfigXmlReader reader) { ErrorInfoXmlDocument doc = new ErrorInfoXmlDocument(); doc.LoadFromConfigXmlReader(reader); XmlNode xmlNode = doc.DocumentElement; return xmlNode; } 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
- ChannelManager.cs
- WinEventQueueItem.cs
- DataServiceQueryOfT.cs
- Constants.cs
- PrincipalPermission.cs
- Debugger.cs
- WebPartActionVerb.cs
- RawStylusInputCustomDataList.cs
- ServiceModelActivity.cs
- MenuItem.cs
- TreeBuilderXamlTranslator.cs
- UrlMappingsModule.cs
- TextServicesCompartment.cs
- AnchorEditor.cs
- MemberHolder.cs
- RoleManagerModule.cs
- DynamicContractTypeBuilder.cs
- ColumnReorderedEventArgs.cs
- RemotingException.cs
- GiveFeedbackEventArgs.cs
- IfAction.cs
- TripleDES.cs
- StyleModeStack.cs
- ComboBoxAutomationPeer.cs
- BamlTreeUpdater.cs
- AdRotator.cs
- WCFServiceClientProxyGenerator.cs
- EventMappingSettingsCollection.cs
- EndEvent.cs
- FolderLevelBuildProvider.cs
- PeerService.cs
- DataBindingExpressionBuilder.cs
- TrustManagerMoreInformation.cs
- ListViewUpdatedEventArgs.cs
- XmlSchemaExporter.cs
- ZipIOLocalFileDataDescriptor.cs
- ProcessModule.cs
- GenericWebPart.cs
- ExceptionUtil.cs
- XmlSerializationWriter.cs
- Profiler.cs
- DelegateSerializationHolder.cs
- XmlIgnoreAttribute.cs
- MessageSmuggler.cs
- XmlValueConverter.cs
- Maps.cs
- WebPartTracker.cs
- DataContract.cs
- DropDownList.cs
- GAC.cs
- InputLanguageManager.cs
- JournalNavigationScope.cs
- StringWriter.cs
- BuildProviderCollection.cs
- WebServiceParameterData.cs
- SmiXetterAccessMap.cs
- InfoCardArgumentException.cs
- ExceptionHelpers.cs
- XPathDocumentIterator.cs
- OracleLob.cs
- DocumentViewerConstants.cs
- HScrollBar.cs
- DataKeyCollection.cs
- sitestring.cs
- DrawingContextDrawingContextWalker.cs
- X500Name.cs
- IgnoreDeviceFilterElementCollection.cs
- Oid.cs
- ButtonChrome.cs
- Themes.cs
- QueryRelOp.cs
- EncryptedPackageFilter.cs
- AttachedAnnotation.cs
- DataDocumentXPathNavigator.cs
- OdbcFactory.cs
- GraphicsPath.cs
- PickBranch.cs
- ProtocolsConfiguration.cs
- __TransparentProxy.cs
- StreamResourceInfo.cs
- WindowProviderWrapper.cs
- MappingModelBuildProvider.cs
- NativeMethods.cs
- TraceSection.cs
- RegexGroupCollection.cs
- BitmapEffectDrawingContextWalker.cs
- WebBrowserDesigner.cs
- RecordBuilder.cs
- DCSafeHandle.cs
- EntryWrittenEventArgs.cs
- XmlDataSourceView.cs
- WebPartConnectionsEventArgs.cs
- MsmqIntegrationAppDomainProtocolHandler.cs
- LocatorGroup.cs
- GroupBoxAutomationPeer.cs
- SqlCacheDependencyDatabaseCollection.cs
- StorageFunctionMapping.cs
- TypePresenter.xaml.cs
- AxDesigner.cs
- NotificationContext.cs