Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Xml / System / Xml / Dom / XmlComment.cs / 1 / XmlComment.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml { using System.Xml.XPath; using System.Diagnostics; // Represents the content of an XML comment. public class XmlComment: XmlCharacterData { protected internal XmlComment( string comment, XmlDocument doc ): base( comment, doc ) { } // Gets the name of the node. public override String Name { get { return OwnerDocument.strCommentName;} } // Gets the name of the current node without the namespace prefix. public override String LocalName { get { return OwnerDocument.strCommentName;} } // Gets the type of the current node. public override XmlNodeType NodeType { get { return XmlNodeType.Comment;} } // Creates a duplicate of this node. public override XmlNode CloneNode(bool deep) { Debug.Assert( OwnerDocument != null ); return OwnerDocument.CreateComment( Data ); } // Saves the node to the specified XmlWriter. public override void WriteTo(XmlWriter w) { w.WriteComment( Data ); } // Saves all the children of the node to the specified XmlWriter. public override void WriteContentTo(XmlWriter w) { // Intentionally do nothing } internal override XPathNodeType XPNodeType { get { return XPathNodeType.Comment; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml { using System.Xml.XPath; using System.Diagnostics; // Represents the content of an XML comment. public class XmlComment: XmlCharacterData { protected internal XmlComment( string comment, XmlDocument doc ): base( comment, doc ) { } // Gets the name of the node. public override String Name { get { return OwnerDocument.strCommentName;} } // Gets the name of the current node without the namespace prefix. public override String LocalName { get { return OwnerDocument.strCommentName;} } // Gets the type of the current node. public override XmlNodeType NodeType { get { return XmlNodeType.Comment;} } // Creates a duplicate of this node. public override XmlNode CloneNode(bool deep) { Debug.Assert( OwnerDocument != null ); return OwnerDocument.CreateComment( Data ); } // Saves the node to the specified XmlWriter. public override void WriteTo(XmlWriter w) { w.WriteComment( Data ); } // Saves all the children of the node to the specified XmlWriter. public override void WriteContentTo(XmlWriter w) { // Intentionally do nothing } internal override XPathNodeType XPNodeType { get { return XPathNodeType.Comment; } } } } // 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
- XmlSigningNodeWriter.cs
- DispatcherTimer.cs
- OracleDataReader.cs
- WebPartConnectionsConfigureVerb.cs
- storepermissionattribute.cs
- ItemList.cs
- COSERVERINFO.cs
- TemplateInstanceAttribute.cs
- TcpTransportSecurity.cs
- MenuTracker.cs
- LazyTextWriterCreator.cs
- BindingMAnagerBase.cs
- PersistenceException.cs
- SqlTypeConverter.cs
- OptionalColumn.cs
- ToolStripItemDesigner.cs
- XmlSchemaSimpleTypeList.cs
- ReadOnlyActivityGlyph.cs
- DataGridViewComboBoxColumnDesigner.cs
- MatrixTransform3D.cs
- ComEventsMethod.cs
- DecoratedNameAttribute.cs
- RtfToken.cs
- SchemaImporter.cs
- UrlPropertyAttribute.cs
- HttpServerUtilityWrapper.cs
- DNS.cs
- Cloud.cs
- UInt16Storage.cs
- CatalogPartCollection.cs
- NetworkStream.cs
- validationstate.cs
- RIPEMD160Managed.cs
- HtmlWindowCollection.cs
- SessionStateUtil.cs
- HttpModulesSection.cs
- TypeConverter.cs
- SqlNotificationEventArgs.cs
- UInt16Converter.cs
- DeclarativeConditionsCollection.cs
- ExtentKey.cs
- FieldNameLookup.cs
- TextParagraphView.cs
- DocumentApplication.cs
- StringFunctions.cs
- CheckBoxBaseAdapter.cs
- WindowsFormsHostPropertyMap.cs
- TypedElement.cs
- AvTrace.cs
- DispatcherExceptionEventArgs.cs
- RetriableClipboard.cs
- MessageBox.cs
- WindowProviderWrapper.cs
- SemanticTag.cs
- IntellisenseTextBox.designer.cs
- BitmapDecoder.cs
- SqlConnectionHelper.cs
- LineVisual.cs
- MetadataLocation.cs
- PagerSettings.cs
- XmlException.cs
- RegexTree.cs
- ExpressionTextBox.xaml.cs
- ValidationError.cs
- Site.cs
- DesignBindingEditor.cs
- FileAuthorizationModule.cs
- SafeProcessHandle.cs
- AspNetHostingPermission.cs
- SqlTypesSchemaImporter.cs
- OdbcTransaction.cs
- ToolBarOverflowPanel.cs
- SiteMapNodeItemEventArgs.cs
- TextRangeAdaptor.cs
- WorkflowServiceAttributes.cs
- SiteMapNode.cs
- GroupByQueryOperator.cs
- VarInfo.cs
- ToolStripScrollButton.cs
- PolicyStatement.cs
- WinEventQueueItem.cs
- DbMetaDataFactory.cs
- SiteMapNodeItemEventArgs.cs
- BuildResult.cs
- TableLayoutColumnStyleCollection.cs
- DataListItemEventArgs.cs
- UnsafeNativeMethodsMilCoreApi.cs
- NullableIntSumAggregationOperator.cs
- GraphicsState.cs
- GroupBoxAutomationPeer.cs
- MessageRpc.cs
- SmtpMail.cs
- __FastResourceComparer.cs
- CodeTryCatchFinallyStatement.cs
- DesignerVerbToolStripMenuItem.cs
- Compiler.cs
- PersonalizableTypeEntry.cs
- IPHostEntry.cs
- Point3DAnimationBase.cs
- IconConverter.cs