Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Sys / System / Configuration / ConfigXmlComment.cs / 1305376 / ConfigXmlComment.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 ConfigXmlComment : XmlComment, IConfigErrorInfo { int _line; string _filename; public ConfigXmlComment( string filename, int line, string comment, XmlDocument doc ) : base( comment, doc ) { _line = line; _filename = filename; } int IConfigErrorInfo.LineNumber { get { return _line; } } string IConfigErrorInfo.Filename { get { return _filename; } } public override XmlNode CloneNode(bool deep) { XmlNode cloneNode = base.CloneNode(deep); ConfigXmlComment clone = cloneNode as ConfigXmlComment; 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
- AuthenticationModuleElement.cs
- XPathBinder.cs
- SqlCacheDependency.cs
- EncoderNLS.cs
- PersonalizableTypeEntry.cs
- MethodCallConverter.cs
- PersonalizationAdministration.cs
- MailWebEventProvider.cs
- InputManager.cs
- Error.cs
- LocalizableAttribute.cs
- FileDataSourceCache.cs
- EntityTypeEmitter.cs
- ReachPageContentSerializerAsync.cs
- HtmlInputRadioButton.cs
- SpecialNameAttribute.cs
- SingleStorage.cs
- VisualBasicValue.cs
- RegexEditorDialog.cs
- KeyFrames.cs
- NumericUpDown.cs
- PagesSection.cs
- ChannelTokenTypeConverter.cs
- FileUtil.cs
- OperationInfo.cs
- securitycriticaldataClass.cs
- CodeMethodReturnStatement.cs
- SqlInternalConnectionTds.cs
- Pen.cs
- KnownBoxes.cs
- CompositeActivityDesigner.cs
- WebPartDisplayMode.cs
- ObjectAnimationBase.cs
- XslTransform.cs
- TreeViewCancelEvent.cs
- GridViewRowPresenter.cs
- FixedSOMSemanticBox.cs
- SoapServerMethod.cs
- ResourceDescriptionAttribute.cs
- TraceSwitch.cs
- SystemKeyConverter.cs
- Parsers.cs
- IIS7UserPrincipal.cs
- HttpCacheVaryByContentEncodings.cs
- ProfileService.cs
- BamlRecordHelper.cs
- BoundsDrawingContextWalker.cs
- RichTextBoxConstants.cs
- FilteredXmlReader.cs
- ConnectionInterfaceCollection.cs
- RuleConditionDialog.Designer.cs
- SkipQueryOptionExpression.cs
- XmlNode.cs
- Registry.cs
- PcmConverter.cs
- DataGridTextBoxColumn.cs
- SqlGenerator.cs
- Utility.cs
- WrappedReader.cs
- TextEffectResolver.cs
- SignatureDescription.cs
- ProfilePropertyMetadata.cs
- Border.cs
- DescriptionAttribute.cs
- ListSurrogate.cs
- PackWebResponse.cs
- TranslateTransform3D.cs
- AbstractExpressions.cs
- SourceFileInfo.cs
- path.cs
- FocusChangedEventArgs.cs
- ProjectionPlanCompiler.cs
- ConditionalAttribute.cs
- WebSysDescriptionAttribute.cs
- MultipleViewProviderWrapper.cs
- FontSourceCollection.cs
- ProgressPage.cs
- IPAddressCollection.cs
- AmbiguousMatchException.cs
- CustomWebEventKey.cs
- RichTextBox.cs
- LineUtil.cs
- BaseHashHelper.cs
- NavigatorInput.cs
- Size3DConverter.cs
- CheckedPointers.cs
- XmlProcessingInstruction.cs
- BinaryWriter.cs
- TypeSystem.cs
- TileBrush.cs
- TextEmbeddedObject.cs
- LinqDataSourceStatusEventArgs.cs
- BlockExpression.cs
- AutoCompleteStringCollection.cs
- TextWriter.cs
- DocumentReferenceCollection.cs
- WindowsAuthenticationEventArgs.cs
- ObjectDataSourceDisposingEventArgs.cs
- LocalBuilder.cs
- ClientScriptManager.cs