Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Configuration / System / Configuration / ConfigXmlWhitespace.cs / 1305376 / 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; } } } // 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
- KnownBoxes.cs
- XmlValidatingReader.cs
- MenuCommand.cs
- BindingCollection.cs
- GatewayDefinition.cs
- NotCondition.cs
- ConnectionPointGlyph.cs
- Codec.cs
- StringReader.cs
- IsolatedStorageSecurityState.cs
- InvalidDataContractException.cs
- PreservationFileWriter.cs
- ComContractElementCollection.cs
- EraserBehavior.cs
- X509Certificate2Collection.cs
- Point.cs
- MsmqIntegrationChannelListener.cs
- CriticalHandle.cs
- XmlQuerySequence.cs
- PageSettings.cs
- CLSCompliantAttribute.cs
- EqualityArray.cs
- ErrorHandlingReceiver.cs
- HandlerWithFactory.cs
- XXXOnTypeBuilderInstantiation.cs
- TreeWalker.cs
- TableRow.cs
- WebBrowserContainer.cs
- _ListenerResponseStream.cs
- BrowserInteropHelper.cs
- BinaryFormatterSinks.cs
- IndexedEnumerable.cs
- ResetableIterator.cs
- PnrpPermission.cs
- SendingRequestEventArgs.cs
- OracleLob.cs
- CompModHelpers.cs
- ConstraintEnumerator.cs
- HtmlInputReset.cs
- CategoryNameCollection.cs
- Trigger.cs
- HtmlTable.cs
- ConfigXmlElement.cs
- HttpProcessUtility.cs
- PointCollection.cs
- PropertiesTab.cs
- DetailsViewModeEventArgs.cs
- XPathSelfQuery.cs
- PrintPreviewGraphics.cs
- Dispatcher.cs
- FunctionImportElement.cs
- InvalidDataException.cs
- DataGridColumnsPage.cs
- ErrorProvider.cs
- PeerService.cs
- DockingAttribute.cs
- InternalConfigRoot.cs
- ObjectDataSourceMethodEventArgs.cs
- DescendentsWalker.cs
- TextDecorationCollectionConverter.cs
- Menu.cs
- AsnEncodedData.cs
- Compiler.cs
- SiteIdentityPermission.cs
- XmlSchemaImporter.cs
- InfoCardCryptoHelper.cs
- contentDescriptor.cs
- ToolStripPanelRenderEventArgs.cs
- UnionExpr.cs
- BoolExpressionVisitors.cs
- TextFormatter.cs
- XPathChildIterator.cs
- TransformConverter.cs
- ResizeGrip.cs
- TTSEngineProxy.cs
- TableDesigner.cs
- MethodBuilder.cs
- RuleSettings.cs
- Int32AnimationUsingKeyFrames.cs
- SingleResultAttribute.cs
- WindowsGraphics2.cs
- TcpChannelFactory.cs
- ProfileBuildProvider.cs
- TextElementCollection.cs
- StateValidator.cs
- StringSorter.cs
- InstalledFontCollection.cs
- ConfigXmlText.cs
- Aggregates.cs
- FlowDocumentPage.cs
- bindurihelper.cs
- RunClient.cs
- ProtocolInformationReader.cs
- HtmlForm.cs
- ClickablePoint.cs
- LicenseException.cs
- XmlBinaryReader.cs
- InstallHelper.cs
- FontFamilyValueSerializer.cs
- OSFeature.cs