Add get only Session field to TelegramClient

Revert "Add get only Session field to TelegramClient"

This reverts commit c66e722b79.

Add Session readonly field to TelegramClient

Add Session readonly field which let user read session properties like current logged-in user's Username & etc.
This commit is contained in:
Felony 2019-10-02 18:18:42 +03:30 committed by Mojtaba Tajik
parent 4a663d89b3
commit c42d99cfaa

View file

@ -29,6 +29,11 @@ namespace TLSharp.Core
private List<TLDcOption> dcOptions; private List<TLDcOption> dcOptions;
private TcpClientConnectionHandler _handler; private TcpClientConnectionHandler _handler;
public Session Session
{
get { return _session; }
}
public TelegramClient(int apiId, string apiHash, public TelegramClient(int apiId, string apiHash,
ISessionStore store = null, string sessionUserId = "session", TcpClientConnectionHandler handler = null) ISessionStore store = null, string sessionUserId = "session", TcpClientConnectionHandler handler = null)
{ {