Exemplo n.º 1
0
 public async Task <PlaybackContentLocation> SetStreamingContentAsync(PlaybackContent content)
 {
     return(await Single(
                RequestGenerator.Serialize("setStreamingContent", ApiVersion.V1_0, content),
                BasicParser.AsObject <PlaybackContentLocation>).ConfigureAwait(false));
 }
Exemplo n.º 2
0
 public Task<PlaybackContentLocation> SetStreamingContentAsync(PlaybackContent content)
 {
     return Single(
         RequestGenerator.Serialize("setStreamingContent", ApiVersion.V1_0, content),
         BasicParser.AsObject<PlaybackContentLocation>);
 }