Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Sys / System / Configuration / ConfigXmlWhitespace.cs / 1 / ConfigXmlWhitespace.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 ConfigXmlWhitespace : XmlWhitespace, IConfigErrorInfo { public ConfigXmlWhitespace( string filename, int line, string comment, XmlDocument doc ) : base( comment, doc ) { _line = line; _filename = filename; } int _line; string _filename; int IConfigErrorInfo.LineNumber { get { return _line; } } string IConfigErrorInfo.Filename { get { return _filename; } } public override XmlNode CloneNode(bool deep) { XmlNode cloneNode = base.CloneNode(deep); ConfigXmlWhitespace clone = cloneNode as ConfigXmlWhitespace; if (clone != null) { clone._line = _line; clone._filename = _filename; } return cloneNode; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// 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 ConfigXmlWhitespace : XmlWhitespace, IConfigErrorInfo { public ConfigXmlWhitespace( string filename, int line, string comment, XmlDocument doc ) : base( comment, doc ) { _line = line; _filename = filename; } int _line; string _filename; int IConfigErrorInfo.LineNumber { get { return _line; } } string IConfigErrorInfo.Filename { get { return _filename; } } public override XmlNode CloneNode(bool deep) { XmlNode cloneNode = base.CloneNode(deep); ConfigXmlWhitespace clone = cloneNode as ConfigXmlWhitespace; 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
- IdentityHolder.cs
- CollectionChangeEventArgs.cs
- Line.cs
- GridSplitterAutomationPeer.cs
- Rect3DValueSerializer.cs
- InvalidWMPVersionException.cs
- XmlBinaryReaderSession.cs
- ReadOnlyDataSource.cs
- QuadraticBezierSegment.cs
- UserNameSecurityTokenAuthenticator.cs
- ArithmeticException.cs
- InheritanceRules.cs
- HyperlinkAutomationPeer.cs
- BinaryKeyIdentifierClause.cs
- PageParser.cs
- TextReturnReader.cs
- ChangeBlockUndoRecord.cs
- OracleBoolean.cs
- TextFragmentEngine.cs
- DataRowChangeEvent.cs
- ToolStripItem.cs
- ColumnHeaderConverter.cs
- HttpModulesSection.cs
- SessionStateContainer.cs
- PointCollectionConverter.cs
- ButtonAutomationPeer.cs
- ExpressionCopier.cs
- SqlUtil.cs
- JsonFaultDetail.cs
- Configuration.cs
- StylusPointPropertyId.cs
- Camera.cs
- OleDbFactory.cs
- HintTextConverter.cs
- FileDataSourceCache.cs
- DesignerActionUIStateChangeEventArgs.cs
- DefaultValueAttribute.cs
- ListView.cs
- Funcletizer.cs
- DataControlFieldCollection.cs
- GenericWebPart.cs
- RawStylusInput.cs
- BasicExpandProvider.cs
- DataGridViewCellStyleChangedEventArgs.cs
- TextElementAutomationPeer.cs
- MultipleViewProviderWrapper.cs
- SelfIssuedAuthRSACryptoProvider.cs
- RotateTransform.cs
- Regex.cs
- ImageSource.cs
- DifferencingCollection.cs
- recordstate.cs
- DragEvent.cs
- UriTemplateDispatchFormatter.cs
- MessageQueuePermissionEntryCollection.cs
- WindowsSecurityTokenAuthenticator.cs
- ChangePasswordDesigner.cs
- DataColumnMapping.cs
- HostedNamedPipeTransportManager.cs
- ListControl.cs
- SQLInt64Storage.cs
- IIS7WorkerRequest.cs
- UrlPath.cs
- HttpCookieCollection.cs
- DashStyle.cs
- EdmItemCollection.OcAssemblyCache.cs
- FederatedMessageSecurityOverHttpElement.cs
- HttpApplication.cs
- OuterGlowBitmapEffect.cs
- ResourceReferenceExpressionConverter.cs
- DelegateTypeInfo.cs
- SBCSCodePageEncoding.cs
- XsltLoader.cs
- EdmComplexPropertyAttribute.cs
- RandomNumberGenerator.cs
- WebBrowserNavigatedEventHandler.cs
- AccessDataSourceView.cs
- ItemMap.cs
- GraphicsState.cs
- ClientConvert.cs
- TileBrush.cs
- SocketAddress.cs
- RequestResizeEvent.cs
- _ContextAwareResult.cs
- NativeMethods.cs
- InternalPermissions.cs
- StyleBamlRecordReader.cs
- SqlProviderManifest.cs
- StatusBarItemAutomationPeer.cs
- SecUtil.cs
- ViewManager.cs
- BulletDecorator.cs
- DefaultProxySection.cs
- PtsCache.cs
- VectorKeyFrameCollection.cs
- EntityViewGenerationConstants.cs
- CategoryEditor.cs
- RunWorkerCompletedEventArgs.cs
- ReferenceConverter.cs
- CloudCollection.cs