コード例 #1
0
 public BoxEventList GetNewEvents(string authToken, string boxId, string afterEventId = null)
 {
     if (authToken == null)
     {
         throw new ArgumentNullException("authToken");
     }
     if (boxId == null)
     {
         throw new ArgumentNullException("boxId");
     }
     return(diadocHttpApi.GetNewEvents(authToken, boxId, afterEventId));
 }