Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Configuration / 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
- SafeSecurityHelper.cs
- MenuItemAutomationPeer.cs
- ProxySimple.cs
- StringValidator.cs
- SetterBaseCollection.cs
- ListDictionaryInternal.cs
- HtmlSelect.cs
- ObjectItemNoOpAssemblyLoader.cs
- MergeExecutor.cs
- ServiceParser.cs
- ImageSource.cs
- SafeLocalMemHandle.cs
- SpeechRecognitionEngine.cs
- FrameworkElementAutomationPeer.cs
- AsyncInvokeOperation.cs
- XmlElementAttribute.cs
- CodeGen.cs
- HierarchicalDataBoundControlAdapter.cs
- Cursor.cs
- AsymmetricKeyExchangeDeformatter.cs
- OleStrCAMarshaler.cs
- QilPatternFactory.cs
- SQLByte.cs
- VolatileEnlistmentMultiplexing.cs
- CallContext.cs
- ImageUrlEditor.cs
- ToolBarTray.cs
- DispatcherEventArgs.cs
- NamedElement.cs
- OleCmdHelper.cs
- SqlTriggerContext.cs
- FixedSOMTableCell.cs
- DataGridCaption.cs
- WebPartEditorCancelVerb.cs
- ReadOnlyAttribute.cs
- infer.cs
- SystemPens.cs
- Pair.cs
- SchemaDeclBase.cs
- InstanceLockQueryResult.cs
- XsdDateTime.cs
- WorkflowServiceAttributesTypeConverter.cs
- ExtentCqlBlock.cs
- HttpApplicationStateBase.cs
- ResolveRequestResponseAsyncResult.cs
- ServiceOperationListItem.cs
- unsafeIndexingFilterStream.cs
- CodeGroup.cs
- Peer.cs
- RangeValidator.cs
- SizeF.cs
- ControlPropertyNameConverter.cs
- HtmlUtf8RawTextWriter.cs
- COAUTHINFO.cs
- BmpBitmapDecoder.cs
- ModelServiceImpl.cs
- MetadataItemSerializer.cs
- EmptyEnumerable.cs
- LongMinMaxAggregationOperator.cs
- ExtendedPropertyCollection.cs
- SafePointer.cs
- WindowClosedEventArgs.cs
- GroupStyle.cs
- CacheVirtualItemsEvent.cs
- EntityAdapter.cs
- ApplicationFileCodeDomTreeGenerator.cs
- HttpServerUtilityBase.cs
- ComponentTray.cs
- SystemIcmpV6Statistics.cs
- MouseButton.cs
- FastPropertyAccessor.cs
- While.cs
- DbExpressionBuilder.cs
- XpsS0ValidatingLoader.cs
- TypeToken.cs
- EventSourceCreationData.cs
- GlyphRun.cs
- GPRECT.cs
- GlyphTypeface.cs
- ToolTipAutomationPeer.cs
- MDIControlStrip.cs
- CounterNameConverter.cs
- MouseWheelEventArgs.cs
- StyleModeStack.cs
- CaseInsensitiveHashCodeProvider.cs
- Binding.cs
- PagedDataSource.cs
- LiteralControl.cs
- GeneralTransform2DTo3D.cs
- XmlIgnoreAttribute.cs
- SymLanguageVendor.cs
- MessageAction.cs
- GraphicsState.cs
- ControlCachePolicy.cs
- InputProviderSite.cs
- DataGridViewHitTestInfo.cs
- DrawingServices.cs
- SqlDataSourceConfigureSortForm.cs
- SqlTrackingQuery.cs
- Token.cs