Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / Dom / XmlComment.cs / 1305376 / 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
- LassoSelectionBehavior.cs
- SoapReflectionImporter.cs
- BaseResourcesBuildProvider.cs
- MDIWindowDialog.cs
- TimeoutException.cs
- PermissionToken.cs
- TextBreakpoint.cs
- SourceElementsCollection.cs
- QuaternionKeyFrameCollection.cs
- InputScopeManager.cs
- newinstructionaction.cs
- FunctionNode.cs
- StringSource.cs
- ToolStripComboBox.cs
- DelegateHelpers.Generated.cs
- OleStrCAMarshaler.cs
- GridViewUpdatedEventArgs.cs
- DataKeyCollection.cs
- ListViewGroupItemCollection.cs
- LayoutUtils.cs
- BackgroundWorker.cs
- ConnectionManagementSection.cs
- SqlDataSourceSelectingEventArgs.cs
- UriTemplateClientFormatter.cs
- SmtpMail.cs
- EventLogger.cs
- StringValidator.cs
- TreeWalker.cs
- TextPointerBase.cs
- UrlAuthorizationModule.cs
- HighlightVisual.cs
- AuthenticatingEventArgs.cs
- HwndSourceParameters.cs
- CompositeFontParser.cs
- FixedSOMTableCell.cs
- EventSourceCreationData.cs
- NavigationEventArgs.cs
- XmlSchemaExporter.cs
- ControlIdConverter.cs
- PowerModeChangedEventArgs.cs
- GACMembershipCondition.cs
- Dictionary.cs
- VideoDrawing.cs
- StreamResourceInfo.cs
- GlobalItem.cs
- XmlReflectionMember.cs
- ProcessModelSection.cs
- CodeGenerator.cs
- EnterpriseServicesHelper.cs
- ControlCommandSet.cs
- InvalidOleVariantTypeException.cs
- ZipIORawDataFileBlock.cs
- TextElementEnumerator.cs
- AppDomainUnloadedException.cs
- Monitor.cs
- BooleanProjectedSlot.cs
- AttachedPropertyBrowsableForChildrenAttribute.cs
- COM2ICategorizePropertiesHandler.cs
- __Filters.cs
- Win32KeyboardDevice.cs
- XPathDescendantIterator.cs
- XmlCharCheckingWriter.cs
- DefaultTextStore.cs
- WsdlExporter.cs
- UnsafeNativeMethods.cs
- PointLight.cs
- AnnotationService.cs
- ToolboxService.cs
- ConfigurationConverterBase.cs
- HttpSessionStateWrapper.cs
- TextDataBindingHandler.cs
- RegisteredDisposeScript.cs
- HtmlShim.cs
- nulltextnavigator.cs
- WebResourceAttribute.cs
- VectorCollection.cs
- SqlProviderManifest.cs
- TokenBasedSet.cs
- SelectionListDesigner.cs
- TypeConverterAttribute.cs
- DocumentPageHost.cs
- Point3DCollectionConverter.cs
- AspNetSynchronizationContext.cs
- EntityContainer.cs
- FloaterBaseParagraph.cs
- DataGridViewColumnDesignTimeVisibleAttribute.cs
- DefaultTraceListener.cs
- AmbientLight.cs
- sqlpipe.cs
- BorderGapMaskConverter.cs
- PropertyCondition.cs
- DrawToolTipEventArgs.cs
- Attachment.cs
- Documentation.cs
- CacheOutputQuery.cs
- XmlHierarchyData.cs
- DataColumnMapping.cs
- MimeTypeAttribute.cs
- EventArgs.cs
- InheritedPropertyChangedEventArgs.cs