ConversationalAgentSession.SystemStateChanged Evento
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Se produce cuando el sistema o el usuario cambian una configuración que restringe la capacidad del asistente digital para realizar una o varias acciones.
// 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
Comentarios
Los desencadenadores típicos de este evento incluyen cambios en las directivas de activación de voz, privacidad, pantalla/visualización, privacidad y funcionalidades de la plataforma del Agente de conversación de Windows.