Code:
/ 4.0 / 4.0 / untmp / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- AudioFormatConverter.cs
- PackageProperties.cs
- SizeIndependentAnimationStorage.cs
- _ProxyChain.cs
- ZipIOEndOfCentralDirectoryBlock.cs
- ObjectItemCachedAssemblyLoader.cs
- SharedUtils.cs
- DbConnectionFactory.cs
- webeventbuffer.cs
- DesignerSerializationVisibilityAttribute.cs
- ClientApiGenerator.cs
- LayoutEvent.cs
- ActivityTypeDesigner.xaml.cs
- MethodExpr.cs
- ToolStripLabel.cs
- Substitution.cs
- NumberAction.cs
- LongMinMaxAggregationOperator.cs
- DetailsViewUpdateEventArgs.cs
- XhtmlBasicLiteralTextAdapter.cs
- SamlConstants.cs
- SafeLocalMemHandle.cs
- CompilerGeneratedAttribute.cs
- ThreadExceptionEvent.cs
- PointLightBase.cs
- XMLSchema.cs
- ConfigurationLoader.cs
- Socket.cs
- RtfNavigator.cs
- CompiledQuery.cs
- InputBinding.cs
- ResourceLoader.cs
- EventlogProvider.cs
- DragEvent.cs
- EmptyCollection.cs
- TextHintingModeValidation.cs
- xmlglyphRunInfo.cs
- TextParaLineResult.cs
- TemplateInstanceAttribute.cs
- SQLConvert.cs
- WebSysDescriptionAttribute.cs
- BoundColumn.cs
- Stack.cs
- Point3DCollectionConverter.cs
- ChangesetResponse.cs
- ListBox.cs
- IgnoreDataMemberAttribute.cs
- LogReserveAndAppendState.cs
- URLIdentityPermission.cs
- SerializationTrace.cs
- DataServiceCollectionOfT.cs
- Utils.cs
- ChildrenQuery.cs
- BuildProviderCollection.cs
- DocumentScope.cs
- SystemResources.cs
- ByteStack.cs
- ColumnMapVisitor.cs
- MetadataWorkspace.cs
- SymDocumentType.cs
- WindowsIdentity.cs
- UserPreferenceChangingEventArgs.cs
- ActivationServices.cs
- Emitter.cs
- ItemAutomationPeer.cs
- ConnectionStringSettings.cs
- TrustManagerPromptUI.cs
- Double.cs
- CellQuery.cs
- odbcmetadatafactory.cs
- ConstraintStruct.cs
- DataGridrowEditEndingEventArgs.cs
- ConfigXmlElement.cs
- ManagedWndProcTracker.cs
- IconBitmapDecoder.cs
- DefaultPropertyAttribute.cs
- GridViewColumnHeaderAutomationPeer.cs
- DefaultProfileManager.cs
- Math.cs
- SafeFileMappingHandle.cs
- TextFormatterHost.cs
- UrlAuthorizationModule.cs
- DataTableTypeConverter.cs
- LeftCellWrapper.cs
- Renderer.cs
- CompressionTransform.cs
- TextParagraph.cs
- SQlBooleanStorage.cs
- UrlAuthorizationModule.cs
- EncoderParameters.cs
- GPRECTF.cs
- BitmapEffectDrawingContent.cs
- XmlNamespaceDeclarationsAttribute.cs
- UrlMappingCollection.cs
- ListView.cs
- Animatable.cs
- EventLogPermission.cs
- HandlerBase.cs
- ModelPerspective.cs
- MemberDescriptor.cs