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 / ConfigXmlReader.cs / 1 / ConfigXmlReader.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Configuration { using System.Configuration.Internal; using System.Collections; using System.Collections.Specialized; using System.Collections.Generic; using System.Configuration; using System.Globalization; using System.IO; using System.Runtime.InteropServices; using System.Security; using System.Security.Permissions; using System.Text; using System.Xml; using System.Net; internal sealed class ConfigXmlReader : XmlTextReader, IConfigErrorInfo { string _rawXml; int _lineOffset; string _filename; // Used in a decrypted configuration section to locate // the line where the ecnrypted section begins. bool _lineNumberIsConstant; internal ConfigXmlReader(string rawXml, string filename, int lineOffset) : this(rawXml, filename, lineOffset, false) { } internal ConfigXmlReader(string rawXml, string filename, int lineOffset, bool lineNumberIsConstant) : base(new StringReader(rawXml)) { _rawXml = rawXml; _filename = filename; _lineOffset = lineOffset; _lineNumberIsConstant = lineNumberIsConstant; Debug.Assert(!_lineNumberIsConstant || _lineOffset > 0, "!_lineNumberIsConstant || _lineOffset > 0"); } internal ConfigXmlReader Clone() { return new ConfigXmlReader(_rawXml, _filename, _lineOffset, _lineNumberIsConstant); } int IConfigErrorInfo.LineNumber { get { if (_lineNumberIsConstant) { return _lineOffset; } else if (_lineOffset > 0) { return base.LineNumber + (_lineOffset - 1); } else { return base.LineNumber; } } } string IConfigErrorInfo.Filename { get { return _filename; } } internal string RawXml { get { return _rawXml; } } } } // 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.Collections; using System.Collections.Specialized; using System.Collections.Generic; using System.Configuration; using System.Globalization; using System.IO; using System.Runtime.InteropServices; using System.Security; using System.Security.Permissions; using System.Text; using System.Xml; using System.Net; internal sealed class ConfigXmlReader : XmlTextReader, IConfigErrorInfo { string _rawXml; int _lineOffset; string _filename; // Used in a decrypted configuration section to locate // the line where the ecnrypted section begins. bool _lineNumberIsConstant; internal ConfigXmlReader(string rawXml, string filename, int lineOffset) : this(rawXml, filename, lineOffset, false) { } internal ConfigXmlReader(string rawXml, string filename, int lineOffset, bool lineNumberIsConstant) : base(new StringReader(rawXml)) { _rawXml = rawXml; _filename = filename; _lineOffset = lineOffset; _lineNumberIsConstant = lineNumberIsConstant; Debug.Assert(!_lineNumberIsConstant || _lineOffset > 0, "!_lineNumberIsConstant || _lineOffset > 0"); } internal ConfigXmlReader Clone() { return new ConfigXmlReader(_rawXml, _filename, _lineOffset, _lineNumberIsConstant); } int IConfigErrorInfo.LineNumber { get { if (_lineNumberIsConstant) { return _lineOffset; } else if (_lineOffset > 0) { return base.LineNumber + (_lineOffset - 1); } else { return base.LineNumber; } } } string IConfigErrorInfo.Filename { get { return _filename; } } internal string RawXml { get { return _rawXml; } } } } // 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
- TableItemPattern.cs
- DataBindingHandlerAttribute.cs
- IOException.cs
- XmlILIndex.cs
- DistinctQueryOperator.cs
- Lasso.cs
- BuildProviderAppliesToAttribute.cs
- SubclassTypeValidatorAttribute.cs
- AttributeAction.cs
- UmAlQuraCalendar.cs
- ServerType.cs
- DesignerSerializationVisibilityAttribute.cs
- HtmlTitle.cs
- WinOEToolBoxItem.cs
- RawStylusActions.cs
- LineGeometry.cs
- parserscommon.cs
- PlatformNotSupportedException.cs
- PeerChannelListener.cs
- DtrList.cs
- OdbcError.cs
- XmlIlGenerator.cs
- OLEDB_Util.cs
- AdRotatorDesigner.cs
- QueryHandler.cs
- ServiceReflector.cs
- TextBoxBase.cs
- DateTimePicker.cs
- UnionExpr.cs
- followingquery.cs
- SQLString.cs
- ConfigXmlSignificantWhitespace.cs
- SmtpLoginAuthenticationModule.cs
- Stacktrace.cs
- SoapSchemaImporter.cs
- RangeValueProviderWrapper.cs
- FixedDocument.cs
- ReaderWriterLockSlim.cs
- _ConnectOverlappedAsyncResult.cs
- ModelPropertyDescriptor.cs
- PropertyChangingEventArgs.cs
- GeneralTransform3D.cs
- columnmapkeybuilder.cs
- DataBindingExpressionBuilder.cs
- FontSizeConverter.cs
- GridView.cs
- BitmapEffectGroup.cs
- ComponentGlyph.cs
- odbcmetadatafactory.cs
- ResourcesChangeInfo.cs
- EasingFunctionBase.cs
- ResumeStoryboard.cs
- FixedPosition.cs
- AssemblyResourceLoader.cs
- ExpandCollapseProviderWrapper.cs
- SecurityElement.cs
- QuaternionAnimation.cs
- QueryOperationResponseOfT.cs
- RenderCapability.cs
- PrePrepareMethodAttribute.cs
- TaskFormBase.cs
- InvalidOleVariantTypeException.cs
- ProxyAttribute.cs
- ExpressionEvaluator.cs
- UInt32.cs
- ParameterElementCollection.cs
- LinqDataSourceView.cs
- ObjectSet.cs
- MatcherBuilder.cs
- DataGridColumnHeadersPresenterAutomationPeer.cs
- Exception.cs
- ProgressPage.cs
- XmlQualifiedName.cs
- XmlSchemaIdentityConstraint.cs
- MaskDescriptors.cs
- GroupedContextMenuStrip.cs
- PartitionedDataSource.cs
- ChannelServices.cs
- ApplicationBuildProvider.cs
- GPPOINT.cs
- BamlStream.cs
- Identity.cs
- QueryNode.cs
- Cursor.cs
- Debug.cs
- SchemaTableColumn.cs
- PropertyEmitter.cs
- LinkDescriptor.cs
- RestHandler.cs
- SafeProcessHandle.cs
- EntitySetBaseCollection.cs
- IsolatedStorageException.cs
- ToolStripPanelRow.cs
- ApplicationActivator.cs
- WindowsToolbar.cs
- WebServiceEnumData.cs
- Property.cs
- Line.cs
- LambdaCompiler.cs
- PartialTrustVisibleAssembly.cs