microsoft/teams.net
Publicmirrored fromhttps://github.com/microsoft/teams.netAvailable
Libraries/Microsoft.Teams.Plugins/Microsoft.Teams.Plugins.AspNetCore/Extensions/ServiceProvider.cs
14lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. All rights reserved. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | using Microsoft.Extensions.DependencyInjection; |
| 5 | |
| 6 | namespace Microsoft.Teams.Plugins.AspNetCore.Extensions; |
| 7 | |
| 8 | public static class ServiceProviderExtensions |
| 9 | { |
| 10 | public static AspNetCorePlugin GetAspNetCorePlugin(this IServiceProvider provider) |
| 11 | { |
| 12 | return provider.GetRequiredService<AspNetCorePlugin>(); |
| 13 | } |
| 14 | } |