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
- EventTrigger.cs
- CacheVirtualItemsEvent.cs
- TreeNodeStyleCollection.cs
- GACMembershipCondition.cs
- TypeGeneratedEventArgs.cs
- SuppressIldasmAttribute.cs
- LongCountAggregationOperator.cs
- RelationshipEntry.cs
- PriorityQueue.cs
- APCustomTypeDescriptor.cs
- XmlTextAttribute.cs
- WebServiceErrorEvent.cs
- DesignerForm.cs
- ApplicationDirectoryMembershipCondition.cs
- ListViewSelectEventArgs.cs
- EntityFunctions.cs
- FastEncoder.cs
- Evidence.cs
- FormsAuthenticationModule.cs
- BinaryWriter.cs
- TextAutomationPeer.cs
- RequestDescription.cs
- ConfigurationLocationCollection.cs
- HandlerMappingMemo.cs
- LocatorPart.cs
- IApplicationTrustManager.cs
- SoapCodeExporter.cs
- HierarchicalDataSourceConverter.cs
- RoutedEventConverter.cs
- XdrBuilder.cs
- FontFamily.cs
- XmlKeywords.cs
- OleDbFactory.cs
- RequestCacheManager.cs
- SessionSymmetricMessageSecurityProtocolFactory.cs
- WorkflowServiceBuildProvider.cs
- DataGridViewCellEventArgs.cs
- KeyInterop.cs
- ServiceDescriptionImporter.cs
- IIS7UserPrincipal.cs
- ExtentCqlBlock.cs
- AuthorizationRuleCollection.cs
- Point3DAnimationBase.cs
- SmiEventSink_DeferedProcessing.cs
- EmptyArray.cs
- StateRuntime.cs
- FormViewDesigner.cs
- OrderedDictionaryStateHelper.cs
- ToolStripArrowRenderEventArgs.cs
- CodeDefaultValueExpression.cs
- DataContractSet.cs
- CaseInsensitiveHashCodeProvider.cs
- SqlDependency.cs
- NavigationWindow.cs
- RowToFieldTransformer.cs
- PartialTrustHelpers.cs
- RectIndependentAnimationStorage.cs
- BufferBuilder.cs
- StrokeNodeEnumerator.cs
- CollectionConverter.cs
- RegionIterator.cs
- ClientSponsor.cs
- UxThemeWrapper.cs
- StackBuilderSink.cs
- GeneratedCodeAttribute.cs
- VerificationException.cs
- AssertFilter.cs
- VirtualPathProvider.cs
- ResourceContainer.cs
- ValueTypeFixupInfo.cs
- MimeTypeMapper.cs
- ResourceReferenceExpressionConverter.cs
- SvcMapFile.cs
- Int32CollectionConverter.cs
- QueueProcessor.cs
- LogLogRecordEnumerator.cs
- CapacityStreamGeometryContext.cs
- SubordinateTransaction.cs
- ErrorTableItemStyle.cs
- FastEncoderStatics.cs
- AggregatePushdown.cs
- GridViewDeletedEventArgs.cs
- SqlNamer.cs
- Type.cs
- NamespaceImport.cs
- RequestQueryParser.cs
- PageRequestManager.cs
- SafeNativeMethods.cs
- PerformanceCounterCategory.cs
- webeventbuffer.cs
- RSACryptoServiceProvider.cs
- IndexerNameAttribute.cs
- Wizard.cs
- DataGridViewRowEventArgs.cs
- CompiledIdentityConstraint.cs
- WsatProxy.cs
- ToolStripItem.cs
- SafeHandles.cs
- WebPartVerbsEventArgs.cs
- XmlHierarchicalEnumerable.cs