microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
Libraries/Microsoft.Teams.Apps/Events/StartEvent.cs
16lines · modecode
| 1 | using Microsoft.Teams.Apps.Plugins; |
| 2 | |
| 3 | namespace Microsoft.Teams.Apps.Events; |
| 4 | |
| 5 | public static partial class AppEventExtensions |
| 6 | { |
| 7 | public static App OnStart(this App app, Action<IPlugin, Event> handler) |
| 8 | { |
| 9 | return app.OnEvent(EventType.Start, handler); |
| 10 | } |
| 11 | |
| 12 | public static App OnStart(this App app, Func<IPlugin, Event, CancellationToken, Task> handler) |
| 13 | { |
| 14 | return app.OnEvent(EventType.Start, handler); |
| 15 | } |
| 16 | } |