Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- SpecularMaterial.cs
- BinaryWriter.cs
- IssuedTokenParametersEndpointAddressElement.cs
- TraceContextRecord.cs
- Merger.cs
- UInt32Converter.cs
- HttpListenerException.cs
- Transform.cs
- ImpersonationContext.cs
- EventLogEntryCollection.cs
- CodeTypeParameter.cs
- OptionalColumn.cs
- SwitchAttribute.cs
- FrameworkContentElement.cs
- ButtonBaseAdapter.cs
- DrawListViewItemEventArgs.cs
- Popup.cs
- EntityViewGenerationAttribute.cs
- diagnosticsswitches.cs
- HtmlSelect.cs
- InfoCardRSAPKCS1SignatureFormatter.cs
- XmlSchemaSimpleType.cs
- IsolatedStorageFileStream.cs
- DecoratedNameAttribute.cs
- DelegateSerializationHolder.cs
- WebServiceReceive.cs
- securitycriticaldataClass.cs
- ObsoleteAttribute.cs
- MruCache.cs
- ProviderSettingsCollection.cs
- SignatureTargetIdManager.cs
- CultureMapper.cs
- WorkerRequest.cs
- HtmlUtf8RawTextWriter.cs
- _SslStream.cs
- ButtonField.cs
- xmlfixedPageInfo.cs
- ListItemCollection.cs
- SqlUdtInfo.cs
- CounterCreationData.cs
- ProgressBarAutomationPeer.cs
- SapiGrammar.cs
- UIntPtr.cs
- GridPattern.cs
- CookielessHelper.cs
- DataListItemEventArgs.cs
- Transform3D.cs
- EditingCoordinator.cs
- ArithmeticException.cs
- Light.cs
- ParamArrayAttribute.cs
- SafeWaitHandle.cs
- MemberJoinTreeNode.cs
- CompositeScriptReferenceEventArgs.cs
- HelpOperationInvoker.cs
- ConstrainedDataObject.cs
- StaticExtension.cs
- ParseElementCollection.cs
- FormClosedEvent.cs
- RenderData.cs
- QuerySafeNavigator.cs
- SQLBytesStorage.cs
- KeysConverter.cs
- PersonalizationStateInfoCollection.cs
- ImageInfo.cs
- DbSetClause.cs
- StylusTip.cs
- InputLangChangeEvent.cs
- UserValidatedEventArgs.cs
- GlobalProxySelection.cs
- TransactionScope.cs
- Context.cs
- EntitySetBase.cs
- ClientFormsIdentity.cs
- ZipIORawDataFileBlock.cs
- DataGridViewRowCancelEventArgs.cs
- AddInEnvironment.cs
- StorageAssociationSetMapping.cs
- OdbcConnectionString.cs
- FileChangesMonitor.cs
- BoundField.cs
- ElementFactory.cs
- RouteItem.cs
- SecurityTokenValidationException.cs
- Thumb.cs
- SqlIdentifier.cs
- RectValueSerializer.cs
- DataFieldConverter.cs
- TriggerCollection.cs
- ToolStripPanelCell.cs
- Transactions.cs
- FontNameConverter.cs
- MetadataReference.cs
- SvcFileManager.cs
- StandardToolWindows.cs
- ObjectDataProvider.cs
- UnaryNode.cs
- XmlSchemas.cs
- ColumnPropertiesGroup.cs
- HttpDebugHandler.cs