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
- DataGridViewComboBoxColumn.cs
- XmlAttributeCache.cs
- itemelement.cs
- TextServicesPropertyRanges.cs
- designeractionbehavior.cs
- ColumnHeader.cs
- DetailsViewUpdateEventArgs.cs
- HtmlTextBoxAdapter.cs
- BasicExpandProvider.cs
- HostExecutionContextManager.cs
- RemoveStoryboard.cs
- securitycriticaldata.cs
- ListViewTableRow.cs
- PagedDataSource.cs
- HTMLTagNameToTypeMapper.cs
- ConfigurationSectionGroupCollection.cs
- StylusOverProperty.cs
- StorageComplexPropertyMapping.cs
- CompositeControl.cs
- BamlCollectionHolder.cs
- IconBitmapDecoder.cs
- Mapping.cs
- BindingWorker.cs
- CompressionTransform.cs
- MtomMessageEncoder.cs
- GeneratedCodeAttribute.cs
- ItemMap.cs
- QuadraticBezierSegment.cs
- WindowsStreamSecurityElement.cs
- Documentation.cs
- StatusBar.cs
- RijndaelCryptoServiceProvider.cs
- HasCopySemanticsAttribute.cs
- TokenFactoryCredential.cs
- FontFamily.cs
- CompletedAsyncResult.cs
- FreezableOperations.cs
- PartialList.cs
- SafeNativeMethods.cs
- Exceptions.cs
- SurrogateSelector.cs
- EvidenceTypeDescriptor.cs
- HttpsTransportBindingElement.cs
- ResourceExpressionBuilder.cs
- TextMetrics.cs
- DispatchChannelSink.cs
- FormViewRow.cs
- assemblycache.cs
- FunctionNode.cs
- SharedConnectionListener.cs
- DeviceSpecificChoice.cs
- TextRangeSerialization.cs
- XmlCompatibilityReader.cs
- OrderByQueryOptionExpression.cs
- EngineSiteSapi.cs
- XmlFileEditor.cs
- Publisher.cs
- SelectionProviderWrapper.cs
- ModelUIElement3D.cs
- Substitution.cs
- TraceUtility.cs
- EdmSchemaError.cs
- OleDbFactory.cs
- FixedSOMPageElement.cs
- MetadataPropertyvalue.cs
- WindowsFormsSectionHandler.cs
- RootBuilder.cs
- XPathAncestorQuery.cs
- SmtpAuthenticationManager.cs
- IssuanceLicense.cs
- DbConnectionInternal.cs
- ResourceManagerWrapper.cs
- ExpressionWriter.cs
- CompModHelpers.cs
- XmlTextEncoder.cs
- HttpListenerElement.cs
- WorkerRequest.cs
- BamlRecordReader.cs
- _NegoState.cs
- HuffModule.cs
- PropertyDescriptorGridEntry.cs
- DockingAttribute.cs
- CodeAttributeDeclaration.cs
- ClientRequest.cs
- LinkLabelLinkClickedEvent.cs
- PropertyRef.cs
- EncoderParameter.cs
- _LazyAsyncResult.cs
- CheckoutException.cs
- TabPanel.cs
- ToolStripHighContrastRenderer.cs
- SHA256.cs
- NamedPipeTransportElement.cs
- DllNotFoundException.cs
- TreeViewImageIndexConverter.cs
- TextBounds.cs
- PropertyGridEditorPart.cs
- DetailsViewInsertEventArgs.cs
- ButtonPopupAdapter.cs
- MultiBinding.cs