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
- CellParagraph.cs
- BitmapEffectInputData.cs
- TextRangeEdit.cs
- SafeEventLogReadHandle.cs
- RegexRunner.cs
- oledbconnectionstring.cs
- TreeIterators.cs
- ParameterElement.cs
- PickBranch.cs
- ManifestResourceInfo.cs
- PersistenceTypeAttribute.cs
- NegotiationTokenAuthenticatorStateCache.cs
- XmlSerializerVersionAttribute.cs
- UIAgentRequest.cs
- SqlRowUpdatedEvent.cs
- ResXResourceReader.cs
- JsonUriDataContract.cs
- StringArrayConverter.cs
- RadioButton.cs
- RecordBuilder.cs
- DbCommandDefinition.cs
- ScriptIgnoreAttribute.cs
- ResourceSetExpression.cs
- InheritedPropertyDescriptor.cs
- CheckBox.cs
- NetSectionGroup.cs
- ReadWriteObjectLock.cs
- DiagnosticsConfigurationHandler.cs
- SqlConnectionStringBuilder.cs
- WindowsSidIdentity.cs
- QueueAccessMode.cs
- Rotation3DKeyFrameCollection.cs
- ZoneIdentityPermission.cs
- EditorZoneAutoFormat.cs
- ScrollableControl.cs
- MaskInputRejectedEventArgs.cs
- ObjectDataSourceFilteringEventArgs.cs
- XpsViewerException.cs
- PolicyLevel.cs
- IgnoreSection.cs
- PropertyOverridesDialog.cs
- XPathNodeHelper.cs
- elementinformation.cs
- KeyFrames.cs
- SrgsRuleRef.cs
- UTF32Encoding.cs
- AuthorizationRule.cs
- TranslateTransform3D.cs
- SID.cs
- CompilationUnit.cs
- PeerTransportElement.cs
- HttpResponseWrapper.cs
- DbException.cs
- TextDecorationCollection.cs
- InstanceDataCollection.cs
- InkCanvasInnerCanvas.cs
- WindowsSlider.cs
- ExpressionsCollectionConverter.cs
- ProfessionalColors.cs
- UserNameSecurityToken.cs
- OperationAbortedException.cs
- TerminateSequence.cs
- DataServiceQueryException.cs
- Geometry3D.cs
- GridViewRow.cs
- DocumentViewerHelper.cs
- OdbcParameterCollection.cs
- StrokeRenderer.cs
- SendActivityDesignerTheme.cs
- NativeMethods.cs
- SvcMapFile.cs
- ActiveXSite.cs
- DiagnosticTrace.cs
- AppDomainAttributes.cs
- TypedCompletedAsyncResult.cs
- CustomCredentialPolicy.cs
- SafeArrayRankMismatchException.cs
- CopyOnWriteList.cs
- RectIndependentAnimationStorage.cs
- EntityContainerEntitySet.cs
- Lasso.cs
- AttachInfo.cs
- MultiByteCodec.cs
- ThreadLocal.cs
- ArrayHelper.cs
- WebRequestModulesSection.cs
- DoubleUtil.cs
- CacheForPrimitiveTypes.cs
- WebPartEditVerb.cs
- PartitionedStream.cs
- MetricEntry.cs
- ListBoxItemWrapperAutomationPeer.cs
- TextTreeInsertUndoUnit.cs
- Attributes.cs
- AuthenticateEventArgs.cs
- CaseCqlBlock.cs
- DateTimeUtil.cs
- DrawingAttributeSerializer.cs
- MouseButtonEventArgs.cs
- PersonalizationProviderCollection.cs