microsoft/teams.net
Publicmirrored from https://github.com/microsoft/teams.netAvailable
Libraries/Microsoft.Teams.Common/Http/HttpClientFactory.cs
10lines · modeblame
82a4e3c3Rajan12 months ago | 1 | // Copyright (c) Microsoft Corporation. All rights reserved. |
| 2 | // Licensed under the MIT License. | |
| 3 | | |
73e7847aAlex Acebo1 years ago | 4 | namespace Microsoft.Teams.Common.Http; |
| 5 | | |
| 6 | public interface IHttpClientFactory | |
| 7 | { | |
| 8 | public IHttpClient CreateClient(); | |
| 9 | public IHttpClient CreateClient(string name); | |
| 10 | } |