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
- BitVector32.cs
- TableLayoutStyleCollection.cs
- BlockExpression.cs
- DataGridRelationshipRow.cs
- BamlBinaryWriter.cs
- GridViewUpdateEventArgs.cs
- XmlSchemaSimpleContentRestriction.cs
- AssemblyAttributesGoHere.cs
- DesignerAttribute.cs
- KeyConverter.cs
- Figure.cs
- TextEditorContextMenu.cs
- XamlPathDataSerializer.cs
- EditingCommands.cs
- UInt64.cs
- ParameterEditorUserControl.cs
- XmlSchemaSimpleContentRestriction.cs
- Regex.cs
- Rotation3DAnimation.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- SharedPerformanceCounter.cs
- GenericParameterDataContract.cs
- OuterGlowBitmapEffect.cs
- CodeEntryPointMethod.cs
- Bitmap.cs
- DesignerActionUI.cs
- EncryptedPackage.cs
- Rect.cs
- CompilationUtil.cs
- KeysConverter.cs
- Selection.cs
- FormatVersion.cs
- ComboBoxRenderer.cs
- RotateTransform3D.cs
- CurrentChangingEventManager.cs
- FamilyTypefaceCollection.cs
- ReaderOutput.cs
- PolicyValidationException.cs
- ResizeGrip.cs
- WriteStateInfoBase.cs
- ColumnWidthChangedEvent.cs
- ScalarRestriction.cs
- SqlProvider.cs
- MultiBinding.cs
- TableRowCollection.cs
- MimeParameters.cs
- BitArray.cs
- DetailsViewPageEventArgs.cs
- ClientBuildManager.cs
- EventHandlersStore.cs
- DragCompletedEventArgs.cs
- NamedElement.cs
- LiteralControl.cs
- PassportAuthenticationModule.cs
- ColumnClickEvent.cs
- Composition.cs
- BoundField.cs
- SaveLedgerEntryRequest.cs
- MULTI_QI.cs
- odbcmetadatafactory.cs
- Rules.cs
- EdmType.cs
- StrongNameUtility.cs
- DbDataRecord.cs
- TrackBar.cs
- SecurityHeader.cs
- Binding.cs
- SystemKeyConverter.cs
- FormsAuthenticationModule.cs
- SetterBaseCollection.cs
- ObjectQuery.cs
- SqlUserDefinedAggregateAttribute.cs
- UInt32.cs
- URLAttribute.cs
- FrameworkElementFactory.cs
- RegistryKey.cs
- SuppressIldasmAttribute.cs
- DomainUpDown.cs
- EntityUtil.cs
- CustomCredentialPolicy.cs
- XPathAxisIterator.cs
- PeerNameRecord.cs
- RsaElement.cs
- SQLSingle.cs
- DataGridTable.cs
- FacetValueContainer.cs
- DataGridLengthConverter.cs
- DrawListViewColumnHeaderEventArgs.cs
- EntityContainerAssociationSet.cs
- PageCodeDomTreeGenerator.cs
- ExpandedWrapper.cs
- DocumentXmlWriter.cs
- cryptoapiTransform.cs
- ToolboxItemAttribute.cs
- DataSourceConverter.cs
- RuntimeConfigLKG.cs
- ChtmlMobileTextWriter.cs
- CacheManager.cs
- ValueChangedEventManager.cs
- COM2TypeInfoProcessor.cs