How can I:
- Get a public channel message history [Text, Photo, Video ...]
- Mark these messages as a viewed
With Telethon (python), we can use this method:
for message in client.get_messages(channel, limit=int(count)):
result = client(functions.messages.GetMessagesViewsRequest(peer=channel,id=[message.id],increment=True))
I want a method like this on WTelegramClient in c#