The CommentAdded event is fired when a comment is added to a blog post or another comment. The event will be fired after the comment information is successfully saved.
Example:
public class MyCustomPlugin
{
public void CommentAdded(ServiceContext context, CommentReadOnly comment)
{
}
}