Adding comments
This commit is contained in:
parent
c5fa153d54
commit
584bb76e0f
@ -73,9 +73,14 @@ namespace TelegramBotBase
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public IStartFormFactory StartFormFactory { get; set; }
|
public IStartFormFactory StartFormFactory { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Contains the message loop factory, which cares about "message-management."
|
||||||
|
/// </summary>
|
||||||
public IMessageLoopFactory MessageLoopFactory { get; set; }
|
public IMessageLoopFactory MessageLoopFactory { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// All internal used settings.
|
||||||
|
/// </summary>
|
||||||
public Dictionary<eSettings, uint> SystemSettings { get; private set; }
|
public Dictionary<eSettings, uint> SystemSettings { get; private set; }
|
||||||
|
|
||||||
public BotBase()
|
public BotBase()
|
||||||
@ -515,6 +520,11 @@ namespace TelegramBotBase
|
|||||||
// }
|
// }
|
||||||
//}
|
//}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Will get invoke on an unhandled call.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="sender"></param>
|
||||||
|
/// <param name="e"></param>
|
||||||
public void MessageLoopFactory_UnhandledCall(object sender, UnhandledCallEventArgs e)
|
public void MessageLoopFactory_UnhandledCall(object sender, UnhandledCallEventArgs e)
|
||||||
{
|
{
|
||||||
OnUnhandledCall(e);
|
OnUnhandledCall(e);
|
||||||
|
|||||||
@ -18,10 +18,20 @@ namespace TelegramBotBase
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public class SessionBase
|
public class SessionBase
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// The Basic message client.
|
||||||
|
/// </summary>
|
||||||
public MessageClient Client { get; set; }
|
public MessageClient Client { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A list of all active sessions.
|
||||||
|
/// </summary>
|
||||||
public Dictionary<long, DeviceSession> SessionList { get; set; }
|
public Dictionary<long, DeviceSession> SessionList { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Reference to the Main BotBase instance for later use.
|
||||||
|
/// </summary>
|
||||||
public BotBase BotBase { get; set; }
|
public BotBase BotBase { get; set; }
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user