コード例 #1
0
 public static Task <List <Issue <T> > > Search <T>(this JiraClient client, string jql)
 {
     return(client.Search <T>(new SearchRequest {
         Jql = jql
     }));
 }
コード例 #2
0
 // Convenience methods for when we are feeling especially lazy and only want to run the most basic of JQLs..
 public static Task <List <Issue <Issue> > > Search(this JiraClient client, string jql)
 {
     return(client.Search <Issue>(jql));
 }