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
- SafeArchiveContext.cs
- RouteValueExpressionBuilder.cs
- InternalConfigHost.cs
- WebBrowserSiteBase.cs
- SQLCharsStorage.cs
- InputLangChangeEvent.cs
- DataTransferEventArgs.cs
- FormConverter.cs
- NamedPipeConnectionPool.cs
- Keywords.cs
- ImagingCache.cs
- HostingEnvironmentSection.cs
- SizeAnimationUsingKeyFrames.cs
- SQLByteStorage.cs
- ParallelActivityDesigner.cs
- DBConnection.cs
- RepeatButtonAutomationPeer.cs
- ImportContext.cs
- IxmlLineInfo.cs
- JoinCqlBlock.cs
- DbFunctionCommandTree.cs
- WindowsRebar.cs
- DecimalFormatter.cs
- ForeignConstraint.cs
- XmlQueryTypeFactory.cs
- NumberFunctions.cs
- StringExpressionSet.cs
- RefExpr.cs
- ComplexLine.cs
- SchemaImporterExtension.cs
- SubMenuStyleCollection.cs
- DataRowView.cs
- UpDownEvent.cs
- CharacterMetricsDictionary.cs
- Match.cs
- StylusPointPropertyInfoDefaults.cs
- Condition.cs
- Binding.cs
- PrintPageEvent.cs
- ModuleBuilderData.cs
- MatrixKeyFrameCollection.cs
- HttpClientCredentialType.cs
- AsymmetricSecurityProtocolFactory.cs
- WebPartConnectionsDisconnectVerb.cs
- WaitHandle.cs
- FixedDSBuilder.cs
- IDReferencePropertyAttribute.cs
- FileIOPermission.cs
- TriggerAction.cs
- ScriptModule.cs
- ToolStripOverflow.cs
- BaseDataBoundControl.cs
- FixedPage.cs
- WhitespaceRuleReader.cs
- CodeSubDirectoriesCollection.cs
- Geometry3D.cs
- PackageDigitalSignature.cs
- ExpressionBuilder.cs
- SqlDependencyUtils.cs
- BevelBitmapEffect.cs
- PropertyDescriptors.cs
- TextInfo.cs
- Label.cs
- DataServiceBehavior.cs
- CultureInfoConverter.cs
- LocationUpdates.cs
- SoapAttributeOverrides.cs
- TransactionTable.cs
- DefaultProxySection.cs
- Pen.cs
- TypeToStringValueConverter.cs
- Nullable.cs
- RegistryExceptionHelper.cs
- ResourceKey.cs
- TagNameToTypeMapper.cs
- DecoderExceptionFallback.cs
- CombinedGeometry.cs
- Keywords.cs
- RuleSettings.cs
- TextureBrush.cs
- SubMenuStyleCollection.cs
- BuildDependencySet.cs
- SerializationSectionGroup.cs
- UserNameSecurityToken.cs
- Stackframe.cs
- RewritingValidator.cs
- FontFaceLayoutInfo.cs
- ProvidersHelper.cs
- BoundPropertyEntry.cs
- BlobPersonalizationState.cs
- TokenDescriptor.cs
- FlowDocumentView.cs
- DebugView.cs
- DynamicValueConverter.cs
- GetPageCompletedEventArgs.cs
- Internal.cs
- CompressEmulationStream.cs
- Html32TextWriter.cs
- TaskDesigner.cs
- TextEndOfLine.cs