Beispiel #1
0
 public IResult <CommentResponse> ReplyComment(string mediaId, string comment_id, string text)
 {
     if (String.IsNullOrEmpty(text) || String.IsNullOrEmpty(mediaId) || String.IsNullOrEmpty(comment_id))
     {
         throw new ArgumentException("MediaId, text and comment_id must be specified");
     }
     return(_actionService.ReplyComment(mediaId, comment_id, text));
 }