Exemplo n.º 1
0
 public string RemoveComment(string commentId, string pid)
 {
     try
     {
         Wiki.DeleteComment(new Guid(commentId));
     }
     catch (AuthorizingException)
     {
         return(null);
     }
     return(commentId);
 }