Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Configuration / System / Configuration / ConfigXmlCDataSection.cs / 1305376 / ConfigXmlCDataSection.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 ConfigXmlCDataSection : XmlCDataSection, IConfigErrorInfo { int _line; string _filename; public ConfigXmlCDataSection( string filename, int line, string data, XmlDocument doc ) : base( data, 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); ConfigXmlCDataSection clone = cloneNode as ConfigXmlCDataSection; 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
- SelectionEditingBehavior.cs
- ImageList.cs
- HitTestFilterBehavior.cs
- WindowsProgressbar.cs
- Point.cs
- HttpServerVarsCollection.cs
- OrderByQueryOptionExpression.cs
- DataControlImageButton.cs
- Exception.cs
- ExpressionVisitor.cs
- ProtocolsSection.cs
- CloseSequence.cs
- _LocalDataStore.cs
- QilReplaceVisitor.cs
- TextParagraphProperties.cs
- DbConnectionStringBuilder.cs
- DictionaryContent.cs
- SpellerHighlightLayer.cs
- ToolStripCollectionEditor.cs
- WebPartUtil.cs
- PersonalizationProviderCollection.cs
- Rotation3D.cs
- SpellerHighlightLayer.cs
- ExpressionsCollectionConverter.cs
- HttpStaticObjectsCollectionBase.cs
- DSASignatureDeformatter.cs
- XmlSchemaValidationException.cs
- StylusDevice.cs
- Transform.cs
- SynchronizedInputAdaptor.cs
- Preprocessor.cs
- TimeoutConverter.cs
- WebPartCatalogCloseVerb.cs
- FreeFormDesigner.cs
- FileRecordSequenceHelper.cs
- FormsAuthenticationUserCollection.cs
- AtomMaterializer.cs
- SqlAliaser.cs
- SafeEventLogWriteHandle.cs
- DbDataAdapter.cs
- SmiRequestExecutor.cs
- ContentType.cs
- CursorInteropHelper.cs
- XmlSignificantWhitespace.cs
- RtType.cs
- XmlLanguage.cs
- EncodingDataItem.cs
- FormView.cs
- QilStrConcatenator.cs
- OracleRowUpdatingEventArgs.cs
- GridItem.cs
- InvalidPropValue.cs
- DataViewManagerListItemTypeDescriptor.cs
- SqlBuilder.cs
- TreeView.cs
- WrappedReader.cs
- SymbolType.cs
- GrammarBuilderWildcard.cs
- ManifestResourceInfo.cs
- DataGridViewCellEventArgs.cs
- ToolStripLabel.cs
- XsltLibrary.cs
- RTTypeWrapper.cs
- CryptoProvider.cs
- ShaderRenderModeValidation.cs
- XNodeValidator.cs
- KeyFrames.cs
- NativeBuffer.cs
- ACE.cs
- DetailsViewUpdatedEventArgs.cs
- ValidationErrorEventArgs.cs
- SqlDependency.cs
- URL.cs
- UrlPropertyAttribute.cs
- IntegerValidator.cs
- OleCmdHelper.cs
- AssemblyCache.cs
- ArrayTypeMismatchException.cs
- Nullable.cs
- OwnerDrawPropertyBag.cs
- CollectionBuilder.cs
- BaseHashHelper.cs
- PasswordTextContainer.cs
- ApplicationFileCodeDomTreeGenerator.cs
- UndoManager.cs
- GeneralTransform3D.cs
- WebPartZoneBase.cs
- FloatUtil.cs
- WaitForChangedResult.cs
- AsyncResult.cs
- TdsParserSessionPool.cs
- StrokeRenderer.cs
- Control.cs
- SHA512.cs
- XmlSchemaProviderAttribute.cs
- DataServiceQueryException.cs
- IconEditor.cs
- BaseComponentEditor.cs
- MemberInfoSerializationHolder.cs
- HttpFileCollection.cs