Example #1
0
 public PrintFormResult GeneratePrintForm(string authToken, string boxId, string messageId, string documentId)
 {
     if (string.IsNullOrEmpty(boxId))
     {
         throw new ArgumentNullException("boxId");
     }
     if (string.IsNullOrEmpty(messageId))
     {
         throw new ArgumentNullException("messageId");
     }
     if (string.IsNullOrEmpty(documentId))
     {
         throw new ArgumentNullException("documentId");
     }
     return(diadocHttpApi.GeneratePrintForm(authToken, boxId, messageId, documentId));
 }