Exemplo n.º 1
0
 /// <summary>  </summary>
 public Task <IReadOnlyCollection <RestClip> > GetClipsAsync(bool istrending = false, PageOptions paging = null, RequestOptions options = null)
 => ClientHelper.GetFollowedClipsAsync(Client, Id, istrending, paging, options);
Exemplo n.º 2
0
 /// <summary> Get information about this channel's user, if authenticated </summary>
 public Task <RestSelfUser> GetSelfUserAsync(RequestOptions options = null)
 => ClientHelper.GetCurrentUserAsync(Client, options);
Exemplo n.º 3
0
 // Streams
 /// <summary> Get this channel's stream information, if available </summary>
 public Task <RestStream> GetStreamAsync(StreamType type = StreamType.Live, RequestOptions options = null)
 => ClientHelper.GetStreamAsync(Client, Id, type, options);
Exemplo n.º 4
0
 // Users
 /// <summary> Get information about this channel's user </summary>
 public Task <RestUser> GetUserAsync(RequestOptions options = null)
 => ClientHelper.GetUserAsync(Client, Id, options);
Exemplo n.º 5
0
 // Chat
 /// <summary> Get cheer badges for this channel </summary>
 public Task <IReadOnlyCollection <RestCheerInfo> > GetCheersAsync(RequestOptions options = null)
 => ClientHelper.GetCheersAsync(Client, Id, options);