ConversationalAgentSession.SystemStateChanged Evento
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Ocorre quando o sistema ou o usuário altera uma configuração que restringe a capacidade do assistente digital de executar uma ou mais ações.
// 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)
Tipo de evento
Comentários
Os gatilhos típicos para esse evento incluem alterações nas políticas de ativação de voz, privacidade, tela/exibição, privacidade e recursos da plataforma do Agente de Conversação do Windows.