Telegram TlSharp使用TlRequestGetParticipants获得最大数量的频道成员(仅10K)。有没有办法突破这个限制 while(偏移量

Telegram TlSharp使用TlRequestGetParticipants获得最大数量的频道成员(仅10K)。有没有办法突破这个限制 while(偏移量,telegram,tdlib,tlsharp,Telegram,Tdlib,Tlsharp,使用此方法,我只能获得10K用户,而且我无法突破此限制请帮助我,我发现一些数据显示aggressive=true,但TlSharp全局搜索没有看到此字段或方法 while (offset < (res.FullChat as TLChannelFull).ParticipantsCount) { var pReq = new TLRequestGetParticipants() {

使用此方法,我只能获得10K用户,而且我无法突破此限制

请帮助我,我发现一些数据显示aggressive=true,但TlSharp全局搜索没有看到此字段或方法
while (offset < (res.FullChat as TLChannelFull).ParticipantsCount)
            {
                var pReq = new TLRequestGetParticipants()
                {
                    Channel = new TLInputChannel() { AccessHash = chat.AccessHash.Value, ChannelId = chat.Id },
                    Filter = new TLChannelParticipantsRecent() { },
                    //Filter = new TLChannelParticipantsSearch() { Q = "a" },
                    Limit = 200,
                    Offset = offset,

                };
                var pRes = await client.SendRequestAsync<TLChannelParticipants>(pReq);
                //result.Users.AddRange(pRes.users.lists.Cast<TLUser>());
                offset += 200;
                await Task.Delay(500);
            }