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
- AnnotationDocumentPaginator.cs
- MetadataHelper.cs
- DrawingVisualDrawingContext.cs
- OLEDB_Util.cs
- GeneralTransform2DTo3DTo2D.cs
- TextRunCache.cs
- OdbcHandle.cs
- SystemWebSectionGroup.cs
- Perspective.cs
- DataErrorValidationRule.cs
- Helper.cs
- Merger.cs
- ReadOnlyDictionary.cs
- CodeMemberField.cs
- RandomNumberGenerator.cs
- Brushes.cs
- SHA384.cs
- ObjectDataSourceChooseTypePanel.cs
- FlowDocumentScrollViewer.cs
- DependencyObjectPropertyDescriptor.cs
- HtmlInputCheckBox.cs
- RtfToXamlLexer.cs
- EqualityComparer.cs
- WorkflowElementDialogWindow.xaml.cs
- ExternalException.cs
- DocumentSchemaValidator.cs
- PageRanges.cs
- ComponentEvent.cs
- Drawing.cs
- DrawingContextDrawingContextWalker.cs
- TextEditorThreadLocalStore.cs
- EventArgs.cs
- SessionIDManager.cs
- followingquery.cs
- Drawing.cs
- Baml2006ReaderFrame.cs
- BreakRecordTable.cs
- Rectangle.cs
- Char.cs
- WinFormsSecurity.cs
- ConfigXmlAttribute.cs
- ToolStripStatusLabel.cs
- IntSecurity.cs
- ListBoxItem.cs
- WebServiceEndpoint.cs
- StructuralCache.cs
- RectAnimationBase.cs
- ServicePoint.cs
- XslTransform.cs
- UnsafeNativeMethods.cs
- SchemaName.cs
- IgnoreSectionHandler.cs
- EdmMember.cs
- ReflectPropertyDescriptor.cs
- ByteStream.cs
- BindUriHelper.cs
- MimeXmlReflector.cs
- TemplateKey.cs
- StateElementCollection.cs
- TagPrefixAttribute.cs
- webeventbuffer.cs
- ObjectHandle.cs
- RelatedPropertyManager.cs
- EntityDataSourceSelectedEventArgs.cs
- ComponentGuaranteesAttribute.cs
- Win32PrintDialog.cs
- PartialCachingControl.cs
- PanelDesigner.cs
- FormConverter.cs
- Binding.cs
- SafeUserTokenHandle.cs
- TypedTableBase.cs
- BitmapFrame.cs
- ToolStripItemBehavior.cs
- EmptyStringExpandableObjectConverter.cs
- BitmapMetadataBlob.cs
- ProfileSettings.cs
- WebPartManagerInternals.cs
- StateItem.cs
- SizeConverter.cs
- XPathNode.cs
- PrintingPermission.cs
- Rect3D.cs
- EntityDataSourceWizardForm.cs
- ChannelSinkStacks.cs
- DataColumnMappingCollection.cs
- DataReceivedEventArgs.cs
- Italic.cs
- FilteredAttributeCollection.cs
- ModuleElement.cs
- IArgumentProvider.cs
- ArcSegment.cs
- CryptoHelper.cs
- ServiceModelActivationSectionGroup.cs
- ReferencedType.cs
- XmlQuerySequence.cs
- TextSyndicationContent.cs
- WebServiceBindingAttribute.cs
- DataGridViewCellConverter.cs
- DrawingBrush.cs