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
- MarkedHighlightComponent.cs
- CommandField.cs
- CryptoApi.cs
- webclient.cs
- TraceInternal.cs
- LineBreak.cs
- UDPClient.cs
- wgx_exports.cs
- SkinBuilder.cs
- SQLInt16Storage.cs
- GeneralTransformCollection.cs
- SourceInterpreter.cs
- OleDbFactory.cs
- DispatcherEventArgs.cs
- SQLInt16Storage.cs
- ZipIOCentralDirectoryFileHeader.cs
- ProviderException.cs
- TCPListener.cs
- MatrixStack.cs
- ClonableStack.cs
- SortQuery.cs
- TimeoutStream.cs
- FormViewUpdatedEventArgs.cs
- UserControl.cs
- _UncName.cs
- TreeSet.cs
- ObjectDataSourceView.cs
- FixedBufferAttribute.cs
- View.cs
- AsyncResult.cs
- StrokeNodeOperations.cs
- MinMaxParagraphWidth.cs
- WebReferencesBuildProvider.cs
- InvalidEnumArgumentException.cs
- SplashScreenNativeMethods.cs
- CookieParameter.cs
- LineGeometry.cs
- RectangleHotSpot.cs
- MonthCalendar.cs
- TextServicesCompartment.cs
- XmlText.cs
- PageSetupDialog.cs
- BinaryObjectWriter.cs
- ValidationVisibilityAttribute.cs
- BamlRecordReader.cs
- PathGeometry.cs
- TableCellCollection.cs
- UITypeEditor.cs
- TemplateLookupAction.cs
- ServiceContractListItemList.cs
- RelationshipFixer.cs
- RootBuilder.cs
- HitTestWithGeometryDrawingContextWalker.cs
- RuleRef.cs
- Variant.cs
- HuffCodec.cs
- embossbitmapeffect.cs
- ZipArchive.cs
- WebPartRestoreVerb.cs
- X509SecurityTokenAuthenticator.cs
- ResourceReferenceExpressionConverter.cs
- CollectionViewSource.cs
- Input.cs
- ResourceDictionaryCollection.cs
- ArgumentException.cs
- CapabilitiesAssignment.cs
- ToolStripScrollButton.cs
- AccessibilityHelperForVista.cs
- Geometry3D.cs
- CryptoStream.cs
- StaticExtension.cs
- EnumBuilder.cs
- PlainXmlSerializer.cs
- UnsafeNativeMethods.cs
- StoreContentChangedEventArgs.cs
- AssemblyCollection.cs
- SQLBinaryStorage.cs
- RankException.cs
- SpellerInterop.cs
- CustomAssemblyResolver.cs
- UIElementHelper.cs
- DrawListViewColumnHeaderEventArgs.cs
- _UncName.cs
- SystemMulticastIPAddressInformation.cs
- RadioButtonStandardAdapter.cs
- ClusterUtils.cs
- RichTextBoxAutomationPeer.cs
- CompilerCollection.cs
- TypedElement.cs
- HttpRuntime.cs
- WindowsGraphics.cs
- NullableLongAverageAggregationOperator.cs
- BlobPersonalizationState.cs
- DataGridTextBoxColumn.cs
- SoapSchemaMember.cs
- TokenBasedSetEnumerator.cs
- ProvideValueServiceProvider.cs
- TokenizerHelper.cs
- SkewTransform.cs
- X509CertificateCollection.cs