Esempio n. 1
0
 // Users
 /// <summary> Get all users following this channel </summary>
 public Task <IReadOnlyCollection <RestUserFollow> > GetFollowersAsync(bool ascending = false, uint limit = 25, uint offset = 0)
 => ChannelHelper.GetFollowersAsync(Client, Id, ascending, limit, offset);
Esempio n. 2
0
 // Users
 /// <summary> Get all users following this channel </summary>
 public Task <IReadOnlyCollection <RestUserFollow> > GetFollowersAsync(bool ascending = false, PageOptions paging = null, RequestOptions options = null)
 => ChannelHelper.GetFollowersAsync(Client, Id, ascending, paging, options);