コード例 #1
0
 public IAsyncResult BeginCreateRepositoryHook(string owner, string repository, GithubRepositoryHook hook, AsyncCallback callback, object state)
 {
     SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
     result.Values["owner"] = owner;
     result.Values["repository"] = repository;
     result.Values["hook"] = hook;
     result.Values["callback"] = callback;
     result.Values["state"] = state;
     return result;
 }
コード例 #2
0
 public IAsyncResult BeginGetRepositoriesFromOrg(string organization, AsyncCallback callback, object state)
 {
     SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
     result.Values["organization"] = organization;
     result.Values["callback"] = callback;
     result.Values["state"] = state;
     return result;
 }
コード例 #3
0
 public IAsyncResult BeginTestRepositoryHook(string owner, string repository, string id, AsyncCallback callback, object state)
 {
     SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
     result.Values["owner"] = owner;
     result.Values["repository"] = repository;
     result.Values["id"] = id;
     result.Values["callback"] = callback;
     result.Values["state"] = state;
     return result;
 }
コード例 #4
0
 public IAsyncResult BeginGetRepositories(AsyncCallback callback, object state)
 {
     SimpleServiceManagementAsyncResult result = new SimpleServiceManagementAsyncResult();
     result.Values["callback"] = callback;
     result.Values["state"] = state;
     return result;
 }