Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Sys / System / Configuration / ConfigXmlText.cs / 1305376 / ConfigXmlText.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 ConfigXmlText : XmlText, IConfigErrorInfo { int _line; string _filename; public ConfigXmlText( string filename, int line, string strData, XmlDocument doc ) : base( strData, 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); ConfigXmlText clone = cloneNode as ConfigXmlText; 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
- SpotLight.cs
- SemanticResolver.cs
- MaskDesignerDialog.cs
- PasswordTextNavigator.cs
- DbMetaDataFactory.cs
- mongolianshape.cs
- SqlReferenceCollection.cs
- SchemaCollectionPreprocessor.cs
- ToggleButtonAutomationPeer.cs
- CapabilitiesUse.cs
- OracleRowUpdatingEventArgs.cs
- TraceListener.cs
- SHA512Managed.cs
- AttributeParameterInfo.cs
- MostlySingletonList.cs
- Multiply.cs
- EntityTypeBase.cs
- ApplicationSettingsBase.cs
- CustomAttributeBuilder.cs
- ViewGenerator.cs
- TransformProviderWrapper.cs
- BulletChrome.cs
- TransformConverter.cs
- FlowDocumentReaderAutomationPeer.cs
- WindowsAltTab.cs
- TransformerTypeCollection.cs
- DataBoundLiteralControl.cs
- DataServiceQueryOfT.cs
- XmlIncludeAttribute.cs
- BitmapEffect.cs
- ProxyOperationRuntime.cs
- SafeSecurityHandles.cs
- ReadContentAsBinaryHelper.cs
- XpsImage.cs
- WebConfigurationManager.cs
- ManipulationDelta.cs
- EntityDataSourceDataSelectionPanel.cs
- PropertyCollection.cs
- XmlSerializableWriter.cs
- DbDataRecord.cs
- CustomAttributeBuilder.cs
- RotateTransform3D.cs
- WebPartConnectVerb.cs
- ClusterSafeNativeMethods.cs
- OutOfProcStateClientManager.cs
- Content.cs
- QueryableDataSourceView.cs
- ScriptReference.cs
- SizeAnimation.cs
- XmlWhitespace.cs
- ProviderManager.cs
- CompositeFontFamily.cs
- CheckBoxField.cs
- Translator.cs
- BamlBinaryReader.cs
- DataGridViewRowHeightInfoPushedEventArgs.cs
- MapPathBasedVirtualPathProvider.cs
- TrackingDataItem.cs
- ItemType.cs
- XmlDataDocument.cs
- IndexedSelectQueryOperator.cs
- XpsFont.cs
- CheckedListBox.cs
- MetadataUtilsSmi.cs
- CheckedListBox.cs
- CompressionTransform.cs
- SQLInt64.cs
- NameNode.cs
- CompositeDesignerAccessibleObject.cs
- ObjectDataSource.cs
- EntityDataSourceConfigureObjectContextPanel.cs
- Identity.cs
- XamlStyleSerializer.cs
- CursorInteropHelper.cs
- listitem.cs
- InplaceBitmapMetadataWriter.cs
- WindowsEditBox.cs
- QualificationDataItem.cs
- XhtmlTextWriter.cs
- NativeMethods.cs
- ConstraintStruct.cs
- MimeXmlImporter.cs
- WebPartDisplayModeCollection.cs
- DefaultClaimSet.cs
- FastEncoderStatics.cs
- EventListener.cs
- _ListenerResponseStream.cs
- CodeNamespaceCollection.cs
- SystemSounds.cs
- DateTimeHelper.cs
- Processor.cs
- DictionarySurrogate.cs
- AssemblyNameEqualityComparer.cs
- AppDomainProtocolHandler.cs
- VoiceChangeEventArgs.cs
- log.cs
- EntityDataSourceSelectingEventArgs.cs
- HostedHttpTransportManager.cs
- SqlOuterApplyReducer.cs
- CqlIdentifiers.cs