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
- WebRequestModuleElementCollection.cs
- WindowsListViewScroll.cs
- KeyGestureValueSerializer.cs
- ControlCollection.cs
- MatchSingleFxEngineOpcode.cs
- ErrorTolerantObjectWriter.cs
- InvalidTimeZoneException.cs
- PackWebRequest.cs
- XmlDataSourceView.cs
- DictionaryKeyPropertyAttribute.cs
- httpapplicationstate.cs
- CngKey.cs
- NamedPipeTransportSecurityElement.cs
- TraceContextRecord.cs
- BufferBuilder.cs
- TreeSet.cs
- Utils.cs
- ThicknessAnimationUsingKeyFrames.cs
- SimpleBitVector32.cs
- SimpleApplicationHost.cs
- EncoderParameter.cs
- TreeViewAutomationPeer.cs
- MenuEventArgs.cs
- ResXDataNode.cs
- Bidi.cs
- SelectorAutomationPeer.cs
- ListViewContainer.cs
- NamedObject.cs
- XmlIncludeAttribute.cs
- coordinatorfactory.cs
- MetafileHeader.cs
- ContextQuery.cs
- DbCommandTree.cs
- BCLDebug.cs
- DoubleSumAggregationOperator.cs
- OracleConnectionFactory.cs
- ResourceContainer.cs
- DrawingGroup.cs
- BaseCodeDomTreeGenerator.cs
- AudioFormatConverter.cs
- Screen.cs
- RegexTypeEditor.cs
- CodeCatchClause.cs
- PerformanceCounterCategory.cs
- TextSelection.cs
- UInt16Converter.cs
- CommandPlan.cs
- StringOutput.cs
- TextEditorParagraphs.cs
- DrawingGroupDrawingContext.cs
- AsyncInvokeContext.cs
- SelectionWordBreaker.cs
- Certificate.cs
- TreeView.cs
- MarkupObject.cs
- ReferenceSchema.cs
- COM2IDispatchConverter.cs
- StylusPointCollection.cs
- DesignObjectWrapper.cs
- SqlUnionizer.cs
- CustomWebEventKey.cs
- PackageRelationship.cs
- CalendarKeyboardHelper.cs
- GridSplitterAutomationPeer.cs
- ColumnMapCopier.cs
- StateItem.cs
- BinaryWriter.cs
- CqlGenerator.cs
- COAUTHIDENTITY.cs
- RSAOAEPKeyExchangeFormatter.cs
- RequestCachePolicy.cs
- MarkerProperties.cs
- _LocalDataStoreMgr.cs
- Literal.cs
- XmlAnyElementAttributes.cs
- XPathNavigator.cs
- NoneExcludedImageIndexConverter.cs
- ColumnWidthChangingEvent.cs
- ResourcePool.cs
- EntityRecordInfo.cs
- HandleExceptionArgs.cs
- CustomGrammar.cs
- TraceData.cs
- httpstaticobjectscollection.cs
- HttpGetProtocolImporter.cs
- NameSpaceExtractor.cs
- DataServiceQueryOfT.cs
- SchemaElementLookUpTableEnumerator.cs
- LogLogRecordEnumerator.cs
- DurableErrorHandler.cs
- ExpressionBinding.cs
- HttpCacheVary.cs
- ObfuscationAttribute.cs
- ComNativeDescriptor.cs
- Rotation3DAnimationBase.cs
- EventKeyword.cs
- ListControlActionList.cs
- ConnectionStringsSection.cs
- WorkflowQueuingService.cs
- EmptyReadOnlyDictionaryInternal.cs