Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Configuration / 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
- HwndSubclass.cs
- Control.cs
- ApplicationActivator.cs
- SearchExpression.cs
- SerializationEventsCache.cs
- Cursor.cs
- NameValuePair.cs
- ProtocolViolationException.cs
- WebBrowserHelper.cs
- WebPartConnectionsCloseVerb.cs
- AnnouncementService.cs
- FastEncoderWindow.cs
- QueryRewriter.cs
- DataQuery.cs
- DiscreteKeyFrames.cs
- CommandID.cs
- ComponentCommands.cs
- HtmlTableCellCollection.cs
- LocalizabilityAttribute.cs
- WrapPanel.cs
- SingleAnimation.cs
- NonParentingControl.cs
- PkcsUtils.cs
- TreeIterators.cs
- remotingproxy.cs
- StandardCommandToolStripMenuItem.cs
- WebBrowserUriTypeConverter.cs
- RelationshipDetailsCollection.cs
- ExecutedRoutedEventArgs.cs
- Bold.cs
- PropertyMap.cs
- BitmapCodecInfo.cs
- Collection.cs
- ReadContentAsBinaryHelper.cs
- Rotation3D.cs
- ColumnResult.cs
- HierarchicalDataBoundControl.cs
- RectangleF.cs
- Pair.cs
- QueryOutputWriter.cs
- securitymgrsite.cs
- UIElementAutomationPeer.cs
- EntityContainerEntitySet.cs
- COM2FontConverter.cs
- ParallelTimeline.cs
- XmlLinkedNode.cs
- ControlSerializer.cs
- OrderPreservingPipeliningSpoolingTask.cs
- XmlSchema.cs
- AutomationPatternInfo.cs
- Processor.cs
- DrawingContextWalker.cs
- EdmMember.cs
- ObjectKeyFrameCollection.cs
- XPathNodeInfoAtom.cs
- NetworkCredential.cs
- ShapeTypeface.cs
- PersistenceTypeAttribute.cs
- CngKey.cs
- CustomErrorsSection.cs
- BlurBitmapEffect.cs
- Bold.cs
- safex509handles.cs
- GridViewHeaderRowPresenterAutomationPeer.cs
- Timer.cs
- TextTreeText.cs
- FileAuthorizationModule.cs
- TdsEnums.cs
- IgnorePropertiesAttribute.cs
- ChannelPoolSettings.cs
- ProfileSection.cs
- DispatcherProcessingDisabled.cs
- TextRunCacheImp.cs
- StaticDataManager.cs
- TreeSet.cs
- ViewManager.cs
- Pkcs7Recipient.cs
- SmiContextFactory.cs
- BaseDataListActionList.cs
- ToolStripDropDownClosedEventArgs.cs
- UniqueIdentifierService.cs
- ParseChildrenAsPropertiesAttribute.cs
- SerializerDescriptor.cs
- GroupStyle.cs
- ViewLoader.cs
- SmtpFailedRecipientException.cs
- RawStylusInputReport.cs
- TypedReference.cs
- UnsafeNativeMethods.cs
- DataObjectAttribute.cs
- NavigatorInput.cs
- RijndaelCryptoServiceProvider.cs
- ProcessHost.cs
- Metafile.cs
- DistinctQueryOperator.cs
- HtmlLink.cs
- SqlUnionizer.cs
- XmlArrayItemAttribute.cs
- PtsPage.cs
- NaturalLanguageHyphenator.cs