AdapterExtensions.UseBotState(BotAdapter, BotState[]) 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.
Ajoute un intergiciel à l’adaptateur pour inscrire un ou plusieurs BotState objets dans le contexte de tour. L’intergiciel enregistre les objets d’état dans le contexte de tour au début de chaque tour.
public static Microsoft.Bot.Builder.BotAdapter UseBotState (this Microsoft.Bot.Builder.BotAdapter botAdapter, params Microsoft.Bot.Builder.BotState[] botStates);
static member UseBotState : Microsoft.Bot.Builder.BotAdapter * Microsoft.Bot.Builder.BotState[] -> Microsoft.Bot.Builder.BotAdapter
<Extension()>
Public Function UseBotState (botAdapter As BotAdapter, ParamArray botStates As BotState()) As BotAdapter
Paramètres
- botAdapter
- BotAdapter
Adaptateur sur lequel inscrire les objets d’état.
- botStates
- BotState[]
Objets d’état à inscrire.
Retours
Adaptateur mis à jour.
Remarques
Pour obtenir les objets d’état, utilisez la méthode de la propriété du TurnStateGet<T>(String) contexte de tour, où le paramètre « key » est le nom complet du type d’état du bot à obtenir.