Ejemplo n.º 1
0
 public AsyncMethodResult CloudSignConfirm(string authToken, string cloudSignToken, string confirmationCode,
                                           ContentLocationPreference?locationPreference = null)
 {
     if (string.IsNullOrEmpty(cloudSignToken))
     {
         throw new ArgumentNullException("cloudSignToken");
     }
     if (string.IsNullOrEmpty(confirmationCode))
     {
         throw new ArgumentNullException("confirmationCode");
     }
     return(diadocHttpApi.CloudSignConfirm(authToken, cloudSignToken, confirmationCode, locationPreference));
 }