示例#1
0
 public IDocumentZipGenerationResult GenerateDocumentZip(string authToken, string boxId, string messageId,
                                                         string documentId, bool fullDocflow)
 {
     if (authToken == null)
     {
         throw new ArgumentNullException("authToken");
     }
     if (boxId == null)
     {
         throw new ArgumentNullException("boxId");
     }
     if (messageId == null)
     {
         throw new ArgumentNullException("messageId");
     }
     if (documentId == null)
     {
         throw new ArgumentNullException("documentId");
     }
     return(diadocHttpApi.GenerateDocumentZip(authToken, boxId, messageId, documentId, fullDocflow));
 }