Beispiel #1
0
 public void Delete(string authToken, string boxId, string messageId, string documentId)
 {
     if (authToken == null)
     {
         throw new ArgumentNullException("authToken");
     }
     if (boxId == null)
     {
         throw new ArgumentNullException("boxId");
     }
     if (messageId == null)
     {
         throw new ArgumentNullException("messageId");
     }
     diadocHttpApi.Delete(authToken, boxId, messageId, documentId);
 }