Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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
- SortDescription.cs
- QilXmlReader.cs
- XmlWriterSettings.cs
- WebGetAttribute.cs
- EncoderBestFitFallback.cs
- DataGridViewTextBoxCell.cs
- ipaddressinformationcollection.cs
- ObjectView.cs
- KerberosTicketHashIdentifierClause.cs
- Pens.cs
- ReadOnlyCollection.cs
- DuplicateWaitObjectException.cs
- RequestDescription.cs
- AsyncPostBackTrigger.cs
- FontFamilyValueSerializer.cs
- ListViewHitTestInfo.cs
- PenLineJoinValidation.cs
- infer.cs
- SystemUdpStatistics.cs
- TextElementEnumerator.cs
- IISMapPath.cs
- HtmlImageAdapter.cs
- TraversalRequest.cs
- ImageSourceConverter.cs
- Stack.cs
- EntityClassGenerator.cs
- ExpressionWriter.cs
- DataGridViewCellParsingEventArgs.cs
- XmlText.cs
- BamlBinaryWriter.cs
- SafeArrayTypeMismatchException.cs
- PrintingPermissionAttribute.cs
- XmlSchemaSimpleTypeList.cs
- JsonWriterDelegator.cs
- StaticExtensionConverter.cs
- OdbcErrorCollection.cs
- EventOpcode.cs
- CornerRadiusConverter.cs
- StaticFileHandler.cs
- Matrix.cs
- Polygon.cs
- BehaviorEditorPart.cs
- CodeCompileUnit.cs
- PathGeometry.cs
- CodeFieldReferenceExpression.cs
- TrackingServices.cs
- UserMapPath.cs
- InstanceOwnerQueryResult.cs
- cookieexception.cs
- DesignerVerbToolStripMenuItem.cs
- UnsafeNativeMethodsMilCoreApi.cs
- XmlNullResolver.cs
- RecipientInfo.cs
- FixedSOMTable.cs
- SmtpAuthenticationManager.cs
- DataFieldEditor.cs
- TableDetailsRow.cs
- Stylus.cs
- storepermission.cs
- ContextMenuStrip.cs
- ParameterBuilder.cs
- HandlerBase.cs
- ReferenceService.cs
- Base64Encoder.cs
- HtmlElementCollection.cs
- MarshalByRefObject.cs
- CollectionConverter.cs
- GCHandleCookieTable.cs
- StateElementCollection.cs
- DbExpressionBuilder.cs
- DataGridColumn.cs
- MainMenu.cs
- DataServiceRequestArgs.cs
- PartitionResolver.cs
- ResourceReferenceKeyNotFoundException.cs
- ProcessInfo.cs
- WebPartExportVerb.cs
- ManipulationStartingEventArgs.cs
- PropertyKey.cs
- EntityViewGenerationConstants.cs
- ToolStripLabel.cs
- PrivilegeNotHeldException.cs
- ObjectViewEntityCollectionData.cs
- URL.cs
- DefaultValueTypeConverter.cs
- ConfigurationManagerInternal.cs
- UriTemplateQueryValue.cs
- ScriptingProfileServiceSection.cs
- ImpersonateTokenRef.cs
- SpoolingTask.cs
- BuilderPropertyEntry.cs
- DbgCompiler.cs
- ImageConverter.cs
- ExpressionBuilderContext.cs
- HwndMouseInputProvider.cs
- MemberAssignment.cs
- EntityContainerRelationshipSet.cs
- XamlLoadErrorInfo.cs
- FileUpload.cs
- SQLByte.cs