BotFrameworkAdapter.CreateOAuthApiClientAsync Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
CreateOAuthApiClientAsync(ITurnContext) |
Crée un client OAuth pour le bot. |
CreateOAuthApiClientAsync(ITurnContext, AppCredentials) |
Crée un client OAuth pour le bot avec les informations d’identification. |
CreateOAuthApiClientAsync(ITurnContext)
Crée un client OAuth pour le bot.
protected virtual System.Threading.Tasks.Task<Microsoft.Bot.Connector.OAuthClient> CreateOAuthApiClientAsync (Microsoft.Bot.Builder.ITurnContext turnContext);
abstract member CreateOAuthApiClientAsync : Microsoft.Bot.Builder.ITurnContext -> System.Threading.Tasks.Task<Microsoft.Bot.Connector.OAuthClient>
override this.CreateOAuthApiClientAsync : Microsoft.Bot.Builder.ITurnContext -> System.Threading.Tasks.Task<Microsoft.Bot.Connector.OAuthClient>
Protected Overridable Function CreateOAuthApiClientAsync (turnContext As ITurnContext) As Task(Of OAuthClient)
Paramètres
- turnContext
- ITurnContext
Objet de contexte pour le tour actuel.
Retours
Un client OAuth pour le bot.
S’applique à
CreateOAuthApiClientAsync(ITurnContext, AppCredentials)
Crée un client OAuth pour le bot avec les informations d’identification.
protected virtual System.Threading.Tasks.Task<Microsoft.Bot.Connector.OAuthClient> CreateOAuthApiClientAsync (Microsoft.Bot.Builder.ITurnContext turnContext, Microsoft.Bot.Connector.Authentication.AppCredentials oAuthAppCredentials);
abstract member CreateOAuthApiClientAsync : Microsoft.Bot.Builder.ITurnContext * Microsoft.Bot.Connector.Authentication.AppCredentials -> System.Threading.Tasks.Task<Microsoft.Bot.Connector.OAuthClient>
override this.CreateOAuthApiClientAsync : Microsoft.Bot.Builder.ITurnContext * Microsoft.Bot.Connector.Authentication.AppCredentials -> System.Threading.Tasks.Task<Microsoft.Bot.Connector.OAuthClient>
Protected Overridable Function CreateOAuthApiClientAsync (turnContext As ITurnContext, oAuthAppCredentials As AppCredentials) As Task(Of OAuthClient)
Paramètres
- turnContext
- ITurnContext
Objet de contexte pour le tour actuel.
- oAuthAppCredentials
- AppCredentials
AppCredentials pour OAuth.
Retours
Un client OAuth pour le bot.