Code:
/ FX-1434 / FX-1434 / 1.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
- SerializationSectionGroup.cs
- TakeOrSkipQueryOperator.cs
- ProxyGenerationError.cs
- PageBuildProvider.cs
- GridViewSortEventArgs.cs
- HandledMouseEvent.cs
- RuntimeIdentifierPropertyAttribute.cs
- SequentialOutput.cs
- ToolboxItemSnapLineBehavior.cs
- Lookup.cs
- BorderSidesEditor.cs
- ColorComboBox.cs
- TextRunTypographyProperties.cs
- PcmConverter.cs
- QueryHandler.cs
- TextDocumentView.cs
- MediaCommands.cs
- BaseParagraph.cs
- MeasureData.cs
- PreservationFileReader.cs
- HtmlEncodedRawTextWriter.cs
- XmlSignificantWhitespace.cs
- DebuggerAttributes.cs
- PreProcessInputEventArgs.cs
- EntityCommandCompilationException.cs
- WindowsGraphicsCacheManager.cs
- Icon.cs
- XmlAutoDetectWriter.cs
- LinkLabelLinkClickedEvent.cs
- MsmqInputChannelListenerBase.cs
- CodeCompileUnit.cs
- TemplatedMailWebEventProvider.cs
- RuntimeCompatibilityAttribute.cs
- ResourceIDHelper.cs
- TableLayoutPanelCellPosition.cs
- TrackingProfileCache.cs
- ToolStripContextMenu.cs
- EntityTransaction.cs
- Module.cs
- StandardOleMarshalObject.cs
- SystemPens.cs
- SiteMapPath.cs
- ScriptReferenceEventArgs.cs
- DefaultPrintController.cs
- Popup.cs
- RedirectionProxy.cs
- LateBoundBitmapDecoder.cs
- SliderAutomationPeer.cs
- JpegBitmapEncoder.cs
- ListItemViewAttribute.cs
- MatrixUtil.cs
- LayoutTableCell.cs
- GenericsInstances.cs
- TextStore.cs
- WindowsStatic.cs
- COMException.cs
- BaseResourcesBuildProvider.cs
- filewebresponse.cs
- BCLDebug.cs
- LoginView.cs
- OSEnvironmentHelper.cs
- TwoPhaseCommit.cs
- OperandQuery.cs
- SmiRecordBuffer.cs
- ApplicationManager.cs
- ImageList.cs
- CaseCqlBlock.cs
- ContentType.cs
- InputBindingCollection.cs
- UniformGrid.cs
- SignatureDescription.cs
- ThicknessAnimation.cs
- PublisherMembershipCondition.cs
- SmiMetaData.cs
- SqlSupersetValidator.cs
- BinaryFormatterWriter.cs
- DataGridCommandEventArgs.cs
- SymDocumentType.cs
- DataGridViewImageColumn.cs
- SmiEventSink.cs
- HijriCalendar.cs
- NullableConverter.cs
- OleDbCommand.cs
- XmlNamespaceMapping.cs
- DBConcurrencyException.cs
- BamlResourceContent.cs
- RawKeyboardInputReport.cs
- IPAddress.cs
- HttpConfigurationSystem.cs
- StorageEndPropertyMapping.cs
- RenderTargetBitmap.cs
- NGCPageContentCollectionSerializerAsync.cs
- ClassValidator.cs
- DbException.cs
- DependencyObject.cs
- TreeNodeSelectionProcessor.cs
- HttpTransportManager.cs
- DescendantOverDescendantQuery.cs
- SignatureToken.cs
- NameValueCollection.cs