示例#1
0
 public BoxEvent GetEvent(string authToken, string boxId, string eventId)
 {
     if (authToken == null)
     {
         throw new ArgumentNullException("authToken");
     }
     if (boxId == null)
     {
         throw new ArgumentNullException("boxId");
     }
     if (eventId == null)
     {
         throw new ArgumentNullException("eventId");
     }
     return(diadocHttpApi.GetEvent(authToken, boxId, eventId));
 }