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
- OLEDB_Enum.cs
- smtpconnection.cs
- TimeSpanValidatorAttribute.cs
- TextSegment.cs
- AssociatedControlConverter.cs
- FieldBuilder.cs
- ToolTipAutomationPeer.cs
- MexHttpBindingCollectionElement.cs
- XPathExpr.cs
- ListControlBuilder.cs
- Effect.cs
- XmlAnyElementAttribute.cs
- TraceContextEventArgs.cs
- LinqDataSourceValidationException.cs
- AnimationStorage.cs
- ComponentDispatcherThread.cs
- CodeDelegateCreateExpression.cs
- DoubleAnimationUsingPath.cs
- EntitySqlQueryBuilder.cs
- LocatorGroup.cs
- Timer.cs
- SiteMapNodeItem.cs
- DecimalAnimationUsingKeyFrames.cs
- ObjectStorage.cs
- PagedControl.cs
- CodeTypeReference.cs
- LabelExpression.cs
- ConfigurationStrings.cs
- OutOfMemoryException.cs
- CounterSampleCalculator.cs
- _NTAuthentication.cs
- ObjectViewListener.cs
- TimeZone.cs
- AuthenticationConfig.cs
- BooleanConverter.cs
- StatusCommandUI.cs
- DBSqlParserColumn.cs
- XmlSchemaIdentityConstraint.cs
- DataGridViewRowPostPaintEventArgs.cs
- ContentPropertyAttribute.cs
- ListMarkerLine.cs
- MetadataItemSerializer.cs
- PolyBezierSegmentFigureLogic.cs
- CheckBox.cs
- ChangePasswordDesigner.cs
- TablePattern.cs
- ResourceExpressionBuilder.cs
- DesignerTransaction.cs
- SqlFactory.cs
- ExpressionHelper.cs
- InternalCache.cs
- StopStoryboard.cs
- TextElementEditingBehaviorAttribute.cs
- TrackBarRenderer.cs
- DisplayMemberTemplateSelector.cs
- XmlnsDefinitionAttribute.cs
- ConfigXmlSignificantWhitespace.cs
- RadioButton.cs
- ConstraintConverter.cs
- ErrorView.xaml.cs
- XmlWrappingWriter.cs
- InputProcessorProfiles.cs
- LambdaCompiler.Unary.cs
- VariableExpressionConverter.cs
- XpsDocument.cs
- SettingsPropertyValue.cs
- SafeNativeMethods.cs
- HtmlLink.cs
- ProcessHostFactoryHelper.cs
- TextControl.cs
- WebPartHelpVerb.cs
- FunctionImportElement.cs
- ArithmeticException.cs
- SessionSwitchEventArgs.cs
- StructuredTypeInfo.cs
- ServiceAuthorizationManager.cs
- SchemaTableOptionalColumn.cs
- ColumnMapProcessor.cs
- ComplexPropertyEntry.cs
- Size3DValueSerializer.cs
- NetworkInformationException.cs
- ListBox.cs
- ToolboxItemAttribute.cs
- DataGridViewTopLeftHeaderCell.cs
- FormViewCommandEventArgs.cs
- DynamicVirtualDiscoSearcher.cs
- SqlRowUpdatedEvent.cs
- CodeAttachEventStatement.cs
- XmlElementCollection.cs
- ErrorWrapper.cs
- FontWeightConverter.cs
- ScrollProviderWrapper.cs
- InstanceDescriptor.cs
- AsyncSerializedWorker.cs
- SaveWorkflowAsyncResult.cs
- ErrorFormatter.cs
- StandardRuntimeEnumValidator.cs
- FieldTemplateUserControl.cs
- XmlHierarchicalDataSourceView.cs
- DecoderReplacementFallback.cs