Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Sys / System / Configuration / ConfigXmlSignificantWhitespace.cs / 1305376 / ConfigXmlSignificantWhitespace.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 ConfigXmlSignificantWhitespace : XmlSignificantWhitespace, IConfigErrorInfo { public ConfigXmlSignificantWhitespace(string filename, int line, string strData, XmlDocument doc) : base(strData, 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); ConfigXmlSignificantWhitespace clone = cloneNode as ConfigXmlSignificantWhitespace; 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
- AssertUtility.cs
- ConnectionProviderAttribute.cs
- Timer.cs
- TagPrefixCollection.cs
- TypeSystemHelpers.cs
- ScriptResourceInfo.cs
- ExternalException.cs
- ToolStripButton.cs
- WebBrowserNavigatedEventHandler.cs
- BehaviorService.cs
- DocComment.cs
- PseudoWebRequest.cs
- Triangle.cs
- WrapPanel.cs
- XPathAncestorIterator.cs
- ParseHttpDate.cs
- StringUtil.cs
- OperatingSystem.cs
- VarInfo.cs
- Axis.cs
- BaseHashHelper.cs
- DiscoveryReference.cs
- DataSysAttribute.cs
- GatewayDefinition.cs
- AmbientLight.cs
- _emptywebproxy.cs
- ZeroOpNode.cs
- Rect3D.cs
- PropertyDescriptorGridEntry.cs
- ConfigXmlCDataSection.cs
- DragCompletedEventArgs.cs
- SurrogateChar.cs
- TemplateManager.cs
- LabelLiteral.cs
- _NegoState.cs
- TimeBoundedCache.cs
- xamlnodes.cs
- WebPartsSection.cs
- CellTreeNodeVisitors.cs
- SystemMulticastIPAddressInformation.cs
- BulletedList.cs
- StorageInfo.cs
- _BasicClient.cs
- TableStyle.cs
- DataServiceKeyAttribute.cs
- CompositeDesignerAccessibleObject.cs
- TimeEnumHelper.cs
- CollectionBase.cs
- JobPageOrder.cs
- TimeSpanConverter.cs
- ISAPIApplicationHost.cs
- QilNode.cs
- PageRouteHandler.cs
- DependencyPropertyConverter.cs
- RedirectionProxy.cs
- ListDesigner.cs
- ByteFacetDescriptionElement.cs
- ProtectedConfigurationProviderCollection.cs
- SafeProcessHandle.cs
- XmlSchemaSimpleContentRestriction.cs
- WindowsStatusBar.cs
- ToolStripStatusLabel.cs
- FormViewInsertedEventArgs.cs
- InvokeProviderWrapper.cs
- MethodBody.cs
- NetworkInformationException.cs
- XpsFilter.cs
- ScrollBar.cs
- StrokeNodeEnumerator.cs
- AppDomainProtocolHandler.cs
- ColorDialog.cs
- DataSvcMapFileSerializer.cs
- ContainerControl.cs
- ModelPropertyCollectionImpl.cs
- XPathScanner.cs
- Evidence.cs
- CodeObject.cs
- TextTreeUndoUnit.cs
- SqlTypesSchemaImporter.cs
- WindowsFormsSectionHandler.cs
- ConfigXmlText.cs
- ErrorHandlingReceiver.cs
- GetPageNumberCompletedEventArgs.cs
- LexicalChunk.cs
- KeyToListMap.cs
- MemberHolder.cs
- TemplateApplicationHelper.cs
- FieldToken.cs
- RIPEMD160.cs
- XmlSchemaExternal.cs
- AdjustableArrowCap.cs
- ICspAsymmetricAlgorithm.cs
- PerspectiveCamera.cs
- WebPartConnectionsCancelVerb.cs
- XmlILIndex.cs
- XsltArgumentList.cs
- ManagementBaseObject.cs
- DataKeyArray.cs
- GridSplitterAutomationPeer.cs
- GenerateScriptTypeAttribute.cs