Partager via


ConversationalAgentSession.SystemStateChanged Événement

Définition

Se produit lorsque le système ou l’utilisateur modifie un paramètre qui limite la capacité de l’assistant numérique à effectuer une ou plusieurs actions.

// Register
event_token SystemStateChanged(TypedEventHandler<ConversationalAgentSession, ConversationalAgentSystemStateChangedEventArgs const&> const& handler) const;

// Revoke with event_token
void SystemStateChanged(event_token const* cookie) const;

// Revoke with event_revoker
ConversationalAgentSession::SystemStateChanged_revoker SystemStateChanged(auto_revoke_t, TypedEventHandler<ConversationalAgentSession, ConversationalAgentSystemStateChangedEventArgs const&> const& handler) const;
public event TypedEventHandler<ConversationalAgentSession,ConversationalAgentSystemStateChangedEventArgs> SystemStateChanged;
function onSystemStateChanged(eventArgs) { /* Your code */ }
conversationalAgentSession.addEventListener("systemstatechanged", onSystemStateChanged);
conversationalAgentSession.removeEventListener("systemstatechanged", onSystemStateChanged);
- or -
conversationalAgentSession.onsystemstatechanged = onSystemStateChanged;
Public Custom Event SystemStateChanged As TypedEventHandler(Of ConversationalAgentSession, ConversationalAgentSystemStateChangedEventArgs) 

Type d'événement

Remarques

Les déclencheurs classiques de cet événement incluent les modifications apportées aux stratégies relatives à l’activation vocale, à la confidentialité, à l’écran/l’affichage, à la confidentialité et aux fonctionnalités de plateforme de l’Agent conversationnel Windows.

S’applique à

Voir aussi