示例#1
0
 protected void UpdateFacultyCommonsGroupsBtn_Click(object sender, EventArgs e)
 {
     using (GoogleDirectoryCall call = new GoogleDirectoryCall())
     {
         try
         {
             call.UpdateCommonsAndFacultyGroups();
         }
         catch (GoogleAPICall.GoogleAPIException ex)
         {
             log.WriteLine(ex.Message);
         }
     }
 }