Ejemplo n.º 1
0
 /// <summary> Get all users subscribed to this channel </summary>
 public Task <IReadOnlyCollection <RestUserSubscription> > GetSubscribersAsync(bool ascending = false, uint limit = 25, uint offset = 0)
 => ChannelHelper.GetSubscribersAsync(Client, Id, ascending, limit, offset);
Ejemplo n.º 2
0
 /// <summary> Get all users subscribed to this channel </summary>
 public Task <IReadOnlyCollection <RestUserSubscription> > GetSubscribersAsync(bool ascending = false, PageOptions paging = null, RequestOptions options = null)
 => ChannelHelper.GetSubscribersAsync(Client, Id, ascending, paging, options);