Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Configuration / 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
- ExtendedProtectionPolicy.cs
- NotCondition.cs
- StreamSecurityUpgradeAcceptorBase.cs
- ClassImporter.cs
- GlobalEventManager.cs
- DispatcherEventArgs.cs
- DataBinding.cs
- DesignerAutoFormat.cs
- WorkflowInstanceExtensionProvider.cs
- DataServiceResponse.cs
- RelationshipNavigation.cs
- StylusPointPropertyInfoDefaults.cs
- CodeComment.cs
- TrackingServices.cs
- WindowsListViewSubItem.cs
- util.cs
- FormsAuthenticationEventArgs.cs
- DataBinder.cs
- ToolStripRenderer.cs
- App.cs
- ImageSourceValueSerializer.cs
- ContextInformation.cs
- UnsafeNativeMethodsPenimc.cs
- EmissiveMaterial.cs
- Tokenizer.cs
- StagingAreaInputItem.cs
- MimeTypeAttribute.cs
- Memoizer.cs
- SerializationSectionGroup.cs
- WmlTextViewAdapter.cs
- StandardTransformFactory.cs
- Drawing.cs
- Thread.cs
- TemplateField.cs
- FixedSOMTable.cs
- WindowsAuthenticationModule.cs
- FilteredReadOnlyMetadataCollection.cs
- ObjectSet.cs
- HttpResponseInternalWrapper.cs
- IdentityModelStringsVersion1.cs
- NavigationWindow.cs
- CodeTypeReferenceExpression.cs
- HttpModuleCollection.cs
- Enum.cs
- RequestCachePolicy.cs
- FastEncoderWindow.cs
- Mutex.cs
- PixelFormatConverter.cs
- WebPartZone.cs
- PageCodeDomTreeGenerator.cs
- GreenMethods.cs
- ToolStripDropDownClosingEventArgs.cs
- TreeNode.cs
- CodeIdentifiers.cs
- IntranetCredentialPolicy.cs
- CachedBitmap.cs
- SecurityRequiresReviewAttribute.cs
- PixelFormatConverter.cs
- util.cs
- SystemWebSectionGroup.cs
- PermissionToken.cs
- CustomWebEventKey.cs
- ValueSerializerAttribute.cs
- ItemCollection.cs
- URLAttribute.cs
- XmlDocument.cs
- TextSelection.cs
- IconHelper.cs
- AsyncResult.cs
- RoleManagerModule.cs
- OutArgumentConverter.cs
- ElementFactory.cs
- Input.cs
- MeasureItemEvent.cs
- OutputCacheSettings.cs
- sqlinternaltransaction.cs
- RepeaterCommandEventArgs.cs
- HandledMouseEvent.cs
- ScriptBehaviorDescriptor.cs
- SqlExpressionNullability.cs
- FileVersion.cs
- EventPrivateKey.cs
- Item.cs
- XmlSchemaInclude.cs
- ExpandedWrapper.cs
- XmlAtomicValue.cs
- DataGridViewColumnConverter.cs
- SudsCommon.cs
- TypeSystemHelpers.cs
- Repeater.cs
- XmlDesignerDataSourceView.cs
- ExceptionWrapper.cs
- ContentPosition.cs
- ConsoleTraceListener.cs
- FieldToken.cs
- ContentControl.cs
- DiscoveryDocumentSearchPattern.cs
- PointLightBase.cs
- FormViewRow.cs
- NonBatchDirectoryCompiler.cs