Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Sys / System / Configuration / ConfigXmlWhitespace.cs / 1 / ConfigXmlWhitespace.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; internal sealed class ConfigXmlWhitespace : XmlWhitespace, IConfigErrorInfo { public ConfigXmlWhitespace( string filename, int line, string comment, XmlDocument doc ) : base( comment, doc ) { _line = line; _filename = filename; } int _line; string _filename; int IConfigErrorInfo.LineNumber { get { return _line; } } string IConfigErrorInfo.Filename { get { return _filename; } } public override XmlNode CloneNode(bool deep) { XmlNode cloneNode = base.CloneNode(deep); ConfigXmlWhitespace clone = cloneNode as ConfigXmlWhitespace; if (clone != null) { clone._line = _line; clone._filename = _filename; } return cloneNode; } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RowUpdatingEventArgs.cs
- ExceptionUtil.cs
- StringFreezingAttribute.cs
- FacetValues.cs
- Stylus.cs
- TextRunCacheImp.cs
- ProfessionalColorTable.cs
- VisualStyleTypesAndProperties.cs
- Journaling.cs
- MeasurementDCInfo.cs
- SignatureHelper.cs
- FormatVersion.cs
- EventHandlerList.cs
- ClassImporter.cs
- __Filters.cs
- CompiledAction.cs
- columnmapfactory.cs
- DataGridComponentEditor.cs
- CommonObjectSecurity.cs
- TypeReference.cs
- SevenBitStream.cs
- SafeWaitHandle.cs
- ValueQuery.cs
- OSFeature.cs
- CommandField.cs
- FloaterBaseParaClient.cs
- UInt32Converter.cs
- XmlFileEditor.cs
- SQLRoleProvider.cs
- PropertyValue.cs
- BamlRecordHelper.cs
- DataSourceSelectArguments.cs
- XPathCompileException.cs
- NonVisualControlAttribute.cs
- DashStyle.cs
- ForeignConstraint.cs
- Sql8ExpressionRewriter.cs
- WebBrowserNavigatingEventHandler.cs
- ClientConfigurationHost.cs
- HebrewCalendar.cs
- DateTime.cs
- DataServiceStreamProviderWrapper.cs
- LongTypeConverter.cs
- XhtmlBasicPanelAdapter.cs
- OperatorExpressions.cs
- SafeRightsManagementSessionHandle.cs
- XmlCompatibilityReader.cs
- ToolStripDropDownClosingEventArgs.cs
- PeerName.cs
- TableDetailsRow.cs
- figurelength.cs
- SqlInfoMessageEvent.cs
- XmlWriterSettings.cs
- DataBindingCollection.cs
- VideoDrawing.cs
- DoubleCollectionValueSerializer.cs
- TextRenderer.cs
- RouteTable.cs
- QuinticEase.cs
- JournalEntryListConverter.cs
- DecimalConverter.cs
- PackUriHelper.cs
- MapPathBasedVirtualPathProvider.cs
- Pair.cs
- AttachedPropertyInfo.cs
- XmlNamespaceManager.cs
- Viewport2DVisual3D.cs
- WindowsFormsSectionHandler.cs
- MdImport.cs
- PtsCache.cs
- SecurityUtils.cs
- ContentDisposition.cs
- WebPartMenuStyle.cs
- TextEffectResolver.cs
- SecurityTokenTypes.cs
- SurrogateDataContract.cs
- PerformanceCounter.cs
- ButtonFieldBase.cs
- UnsignedPublishLicense.cs
- XPathNavigatorKeyComparer.cs
- mediapermission.cs
- DynamicQueryableWrapper.cs
- AssemblyBuilder.cs
- ArgumentOutOfRangeException.cs
- formatter.cs
- ConfigurationException.cs
- PeerSecurityHelpers.cs
- HwndSource.cs
- TransformerConfigurationWizardBase.cs
- JsonEncodingStreamWrapper.cs
- Collection.cs
- Graphics.cs
- TemplateBuilder.cs
- HttpApplicationFactory.cs
- PageStatePersister.cs
- WpfSharedXamlSchemaContext.cs
- _NetworkingPerfCounters.cs
- ThreadAbortException.cs
- CodeTypeReferenceCollection.cs
- WebConfigurationHost.cs