Exemple #1
0
 public GeneratedFile GenerateSignatureRejectionXml(string authToken, string boxId, string messageId,
                                                    string attachmentId, SignatureRejectionInfo signatureRejectionInfo)
 {
     if (boxId == null)
     {
         throw new ArgumentNullException("boxId");
     }
     if (messageId == null)
     {
         throw new ArgumentNullException("messageId");
     }
     if (attachmentId == null)
     {
         throw new ArgumentNullException("attachmentId");
     }
     return(diadocHttpApi.GenerateSignatureRejectionXml(authToken, boxId, messageId, attachmentId, signatureRejectionInfo));
 }