Example #1
0
 public Task<ContentCount> GetContentCountAsync(CountingTarget target)
 {
     return Single(
         RequestGenerator.Serialize("getContentCount", ApiVersion.V1_2, target),
         BasicParser.AsObject<ContentCount>);
 }
Example #2
0
 public async Task <ContentCount> GetContentCountAsync(CountingTarget target)
 {
     return(await Single(
                RequestGenerator.Serialize("getContentCount", ApiVersion.V1_2, target),
                BasicParser.AsObject <ContentCount>).ConfigureAwait(false));
 }
 public async Task<ContentCount> GetContentCountAsync(CountingTarget target)
 {
     return await Single(
         RequestGenerator.Serialize("getContentCount", ApiVersion.V1_2, target),
         BasicParser.AsObject<ContentCount>).ConfigureAwait(false);
 }