microsoft/teams.net

Public

mirrored fromhttps://github.com/microsoft/teams.netAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
v2.0.0-preview.5

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

Libraries/Microsoft.Teams.Apps/Events/StartEvent.cs

16lines · modecode

1using Microsoft.Teams.Apps.Plugins;
2
3namespace Microsoft.Teams.Apps.Events;
4
5public 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}