Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Sys / System / Configuration / ConfigXmlElement.cs / 1305376 / ConfigXmlElement.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 ConfigXmlElement : XmlElement, IConfigErrorInfo { int _line; string _filename; public ConfigXmlElement( string filename, int line, string prefix, string localName, string namespaceUri, XmlDocument doc ) : base( prefix, localName, namespaceUri, 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); ConfigXmlElement clone = cloneNode as ConfigXmlElement; 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
- CodeFieldReferenceExpression.cs
- ValueOfAction.cs
- CardSpacePolicyElement.cs
- listitem.cs
- FilterException.cs
- GPPOINT.cs
- TcpSocketManager.cs
- ImportCatalogPart.cs
- ByteRangeDownloader.cs
- OutputCacheSettingsSection.cs
- TableCell.cs
- XmlDataSourceNodeDescriptor.cs
- XmlDocument.cs
- Adorner.cs
- DiscoveryDocumentSerializer.cs
- TailCallAnalyzer.cs
- HtmlListAdapter.cs
- DtdParser.cs
- TraceRecords.cs
- DataGridRowClipboardEventArgs.cs
- FocusWithinProperty.cs
- AuthorizationPolicyTypeElement.cs
- HeaderLabel.cs
- CodeObjectCreateExpression.cs
- BitmapFrameDecode.cs
- WindowsRichEdit.cs
- DataObjectSettingDataEventArgs.cs
- ControlBindingsCollection.cs
- KeyNotFoundException.cs
- RangeValuePattern.cs
- DesignerVerbToolStripMenuItem.cs
- GifBitmapEncoder.cs
- HttpGetClientProtocol.cs
- CheckBox.cs
- RegexTree.cs
- XmlByteStreamWriter.cs
- PropertyChangingEventArgs.cs
- TargetPerspective.cs
- CompositeDataBoundControl.cs
- WindowsFormsSectionHandler.cs
- SafeCertificateStore.cs
- ReadWriteSpinLock.cs
- TextEditorParagraphs.cs
- DiscoveryDocumentSearchPattern.cs
- FloatMinMaxAggregationOperator.cs
- XPathNavigatorKeyComparer.cs
- Ops.cs
- WSSecurityJan2004.cs
- RelationshipFixer.cs
- Screen.cs
- XmlSchemaSimpleTypeRestriction.cs
- FrameSecurityDescriptor.cs
- SessionPageStatePersister.cs
- KeyValueInternalCollection.cs
- __TransparentProxy.cs
- AutomationElementCollection.cs
- QueryCorrelationInitializer.cs
- ForeignConstraint.cs
- LinqDataSourceHelper.cs
- DXD.cs
- WorkflowServiceHostFactory.cs
- TraversalRequest.cs
- DocumentPageView.cs
- SqlRemoveConstantOrderBy.cs
- WebPartRestoreVerb.cs
- CustomValidator.cs
- EntityViewGenerationAttribute.cs
- AsyncStreamReader.cs
- BCLDebug.cs
- DrawingVisualDrawingContext.cs
- RandomNumberGenerator.cs
- UIElement3DAutomationPeer.cs
- CacheAxisQuery.cs
- FilteredAttributeCollection.cs
- LinqDataSourceSelectEventArgs.cs
- DisableDpiAwarenessAttribute.cs
- WebPartTracker.cs
- CssClassPropertyAttribute.cs
- PartialCachingControl.cs
- FontUnit.cs
- PropertyMapper.cs
- RectangleHotSpot.cs
- Msec.cs
- DeviceContext2.cs
- SqlBulkCopyColumnMapping.cs
- IndexerNameAttribute.cs
- OdbcConnectionOpen.cs
- MatrixTransform3D.cs
- CounterSampleCalculator.cs
- FlowDocumentPage.cs
- DataContractJsonSerializerOperationBehavior.cs
- ForwardPositionQuery.cs
- MessagePropertyVariants.cs
- ControlPaint.cs
- FixedBufferAttribute.cs
- Span.cs
- ColumnMapTranslator.cs
- FreezableDefaultValueFactory.cs
- LinkedResourceCollection.cs
- AdRotator.cs