Ejemplo n.º 1
0
 public GeneratedFile GenerateRevocationRequestXml(string authToken, string boxId, string messageId,
                                                   string attachmentId, RevocationRequestInfo revocationRequestInfo)
 {
     if (boxId == null)
     {
         throw new ArgumentNullException("boxId");
     }
     if (messageId == null)
     {
         throw new ArgumentNullException("messageId");
     }
     if (attachmentId == null)
     {
         throw new ArgumentNullException("attachmentId");
     }
     return(diadocHttpApi.GenerateRevocationRequestXml(authToken, boxId, messageId, attachmentId, revocationRequestInfo));
 }