NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

XmlDocument.CreateComment

Creates an XmlComment containing the specified data.

[Visual Basic]
Overridable Public Function CreateComment( _
   ByVal data As String _
) As XmlComment
[C#]
public virtual XmlComment CreateComment(
   string data
);
[C++]
public: virtual XmlComment* CreateComment(
   String* data
);
[JScript]
public function CreateComment(
   data : String
) : XmlComment;

Parameters

data
The data to add to the new XmlComment.

Return Value

The new XmlComment.

See Also

XmlDocument Class | XmlDocument Members | System.NewXml Namespace