OpenTl.ClientApi
OpenTl.ClientApi copied to clipboard
RequestGetParticipants Does Not Work
I Used RequestGetParticipants To get Participants Of Group But No Success
my code is :
TChannel t = (TChannel)item; RequestGetParticipants rgp = new RequestGetParticipants(); TInputChannel tic = new TInputChannel(); tic.AccessHash = t.AccessHash; tic.ChannelId=t.Id; rgp.Channel = tic; rgp.Limit = 5; rgp.Offset = 0; var participants = (TChannelParticipants)clientApi.CustomRequestsService.SendRequestAsync(rgp).GetAwaiter().GetResult();
but last Line Throw Exception DotNetty
Please Help Me
thx
I Solve My Problem . This Library Is Great . The Filter Argument NOT OPTIONAL ;
I Solve My Problem . This Library Is Great . The Filter Argument NOT OPTIONAL ;
Could you share a sample with us?