Exemplo n.º 1
0
 public Task <RegionedList <string> > GetBugNamesAsync(Month month) => FetchAsync <RegionedList <string> >(Bug.Endpoint(), ("month", month.EnumMember()), ("excludedetails", true));
Exemplo n.º 2
0
 public Task <string[]> GetBugNamesAsync() => FetchAsync <string[]>(Bug.Endpoint(), ("excludedetails", true));
Exemplo n.º 3
0
 public Task <Bug[]> GetBugsAsync() => FetchAsync <Bug[]>(Bug.Endpoint());
Exemplo n.º 4
0
 public Task <RegionedList <Bug> > GetBugsAsync(Month month) => FetchAsync <RegionedList <Bug> >(Bug.Endpoint(), ("month", month.EnumMember()));
Exemplo n.º 5
0
 public Task <Bug> GetBugAsync(string name) => FetchAsync <Bug>(Bug.Endpoint(name));