Sent by a parser object to its delegate when it encounters a comment in the XML.
Original signature is '- (void)parser:(NSXMLParser *)parser foundComment:(NSString *)comment'
Available in Mac OS X v10.3 and later.

C# | Visual Basic | Visual C++ |
public delegate void ParserFoundCommentEventHandler( NSXMLParser parser, NSString comment )
Public Delegate Sub ParserFoundCommentEventHandler ( _ parser As NSXMLParser, _ comment As NSString _ )
public delegate void ParserFoundCommentEventHandler( NSXMLParser^ parser, NSString^ comment )

- parser (NSXMLParser)
- An NSXMLParser object parsing XML.
- comment (NSString)
- A string that is a the content of a comment in the XML.

- Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)