我正在尝试向winForm应用程序添加一些电报功能。我正在为此使用TLSharp库。但是,没有有关如何从帐户注销的正确手册。我在论坛上发现的所有内容都导致了这一点:
var LogOut = new TLRequestLogOut();
await MainWindow.client.SendRequestAsync<Boolean>(LogOut);
那确实注销了,但是1号-它给出了异常错误:
System.InvalidOperationException: Couldn't read the packet length at TLSharp.Core.Network.TcpTransport.<Receieve>d__4.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
2nd-注销请求后,“ IsUserAuthorized”仍然返回true。 第3个会话文件,甚至被删除
File.Delete(sessionName);
自我恢复