Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ScriptingRoleServiceSection.cs
- AttributeParameterInfo.cs
- cache.cs
- EventRouteFactory.cs
- Single.cs
- SafeHandles.cs
- NullToBooleanConverter.cs
- SqlCrossApplyToCrossJoin.cs
- BulletChrome.cs
- EventProviderWriter.cs
- ToolStripItemEventArgs.cs
- TextTrailingWordEllipsis.cs
- ApplicationBuildProvider.cs
- XsdDateTime.cs
- DataGridPagerStyle.cs
- SecurityTokenRequirement.cs
- SmiSettersStream.cs
- PageStatePersister.cs
- SignatureTargetIdManager.cs
- SymmetricKeyWrap.cs
- SqlMultiplexer.cs
- PkcsMisc.cs
- NaturalLanguageHyphenator.cs
- DisposableCollectionWrapper.cs
- PointCollectionConverter.cs
- ThreadInterruptedException.cs
- CreateUserWizardStep.cs
- EncoderBestFitFallback.cs
- DataMisalignedException.cs
- IdentitySection.cs
- PrtCap_Public_Simple.cs
- PhysicalFontFamily.cs
- ScrollItemPattern.cs
- TransformationRules.cs
- CacheRequest.cs
- NumberFormatInfo.cs
- _HeaderInfoTable.cs
- WorkBatch.cs
- MultiAsyncResult.cs
- AdornerLayer.cs
- Matrix.cs
- DesignerDataRelationship.cs
- AssemblyBuilder.cs
- RadioButton.cs
- Avt.cs
- HandleRef.cs
- RawStylusSystemGestureInputReport.cs
- SafeProcessHandle.cs
- ForeignConstraint.cs
- EventsTab.cs
- Filter.cs
- TextCompositionManager.cs
- MatrixStack.cs
- GroupLabel.cs
- FormsAuthenticationUser.cs
- SafeProcessHandle.cs
- ResolveInfo.cs
- SelectionListDesigner.cs
- XPathNavigator.cs
- WebServicesSection.cs
- PreviewPrintController.cs
- StrokeFIndices.cs
- TextServicesContext.cs
- AggregateException.cs
- Exceptions.cs
- TypeHelpers.cs
- XmlChildEnumerator.cs
- ParsedRoute.cs
- EventsTab.cs
- WindowsGraphicsWrapper.cs
- ConfigurationErrorsException.cs
- CanExecuteRoutedEventArgs.cs
- VerticalAlignConverter.cs
- MaterialGroup.cs
- AutoSizeToolBoxItem.cs
- QualifiedCellIdBoolean.cs
- DataViewSettingCollection.cs
- RestHandler.cs
- Schema.cs
- DataGridRelationshipRow.cs
- Column.cs
- PropertyInfoSet.cs
- _HeaderInfo.cs
- WebPartMinimizeVerb.cs
- CRYPTPROTECT_PROMPTSTRUCT.cs
- CacheSection.cs
- DataSourceHelper.cs
- CodeTypeParameterCollection.cs
- ConfigXmlAttribute.cs
- Types.cs
- TiffBitmapEncoder.cs
- XsdDuration.cs
- CompilationLock.cs
- Transform3DGroup.cs
- ComplexLine.cs
- XmlBindingWorker.cs
- BitmapData.cs
- WebPartConnectionsDisconnectVerb.cs
- XPathAxisIterator.cs
- VariableQuery.cs