Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Sys / 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
- RequestCachingSection.cs
- CodeDelegateInvokeExpression.cs
- XmlSchemaSimpleTypeUnion.cs
- DataRowView.cs
- WebErrorHandler.cs
- SmiEventSink_Default.cs
- ScriptRegistrationManager.cs
- ContextMenuAutomationPeer.cs
- RTTypeWrapper.cs
- SignedXml.cs
- XmlSchemaResource.cs
- WebSysDefaultValueAttribute.cs
- NotificationContext.cs
- PolyBezierSegmentFigureLogic.cs
- LocalIdKeyIdentifierClause.cs
- FragmentQuery.cs
- DataGridViewTextBoxEditingControl.cs
- RuntimeConfig.cs
- RequestCachingSection.cs
- XmlTextWriter.cs
- DateTimeOffsetStorage.cs
- SplashScreenNativeMethods.cs
- ThicknessKeyFrameCollection.cs
- CompositeControlDesigner.cs
- CodeIndexerExpression.cs
- AutomationPattern.cs
- ReadOnlyCollectionBase.cs
- TextTreeInsertUndoUnit.cs
- ResourceContainer.cs
- Crypto.cs
- FormatException.cs
- StructuralCache.cs
- ZipIOExtraFieldPaddingElement.cs
- basenumberconverter.cs
- ServiceNameCollection.cs
- RuntimeEnvironment.cs
- xml.cs
- BuildProvider.cs
- ObjectNotFoundException.cs
- WmlMobileTextWriter.cs
- _emptywebproxy.cs
- GeneralTransform3DCollection.cs
- FileUtil.cs
- CompiledXpathExpr.cs
- AlgoModule.cs
- Border.cs
- TTSEngineTypes.cs
- ByteStreamGeometryContext.cs
- DefaultAsyncDataDispatcher.cs
- PropertyItem.cs
- SessionStateUtil.cs
- DataGridViewColumnEventArgs.cs
- UriSectionReader.cs
- SimpleBitVector32.cs
- ContainerControl.cs
- AddInPipelineAttributes.cs
- CatchDesigner.xaml.cs
- DrawingState.cs
- FontInfo.cs
- AuthenticationSection.cs
- WSDualHttpBindingCollectionElement.cs
- Matrix.cs
- PermissionRequestEvidence.cs
- MobileCategoryAttribute.cs
- ImageFormat.cs
- OleDragDropHandler.cs
- ExtendedProtectionPolicyTypeConverter.cs
- SynchronizingStream.cs
- ScrollBarAutomationPeer.cs
- List.cs
- WindowShowOrOpenTracker.cs
- StyleBamlRecordReader.cs
- FontInfo.cs
- SchemaDeclBase.cs
- ValidationError.cs
- Events.cs
- TrackingCondition.cs
- ExecutionContext.cs
- ImageAttributes.cs
- ISCIIEncoding.cs
- Int64.cs
- SqlClientWrapperSmiStreamChars.cs
- nulltextnavigator.cs
- RenderDataDrawingContext.cs
- ResolveNameEventArgs.cs
- WindowsListViewItemStartMenu.cs
- RtfControlWordInfo.cs
- _OSSOCK.cs
- XmlTypeMapping.cs
- FollowerQueueCreator.cs
- ScalarConstant.cs
- UIElementPropertyUndoUnit.cs
- RectAnimationBase.cs
- MasterPageParser.cs
- OleDbRowUpdatingEvent.cs
- EllipticalNodeOperations.cs
- EventLogPermissionAttribute.cs
- XmlSerializerFactory.cs
- EntityException.cs
- FrameworkElementFactoryMarkupObject.cs