XboxLiveEndpointPairTemplate.InboundEndpointPairCreated 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í.
Evento generado cuando un dispositivo remoto crea correctamente un par de puntos de conexión desde sí mismo a la máquina local. Los detalles sobre el nuevo par de puntos de conexión se pueden encontrar en los argumentos del evento.
Importante
Esta API no está disponible para todas las aplicaciones. A menos que Microsoft aprovisione especialmente la cuenta de desarrollador, se producirá un error en las llamadas a estas API en tiempo de ejecución.
// Register
event_token InboundEndpointPairCreated(TypedEventHandler<XboxLiveEndpointPairTemplate, XboxLiveInboundEndpointPairCreatedEventArgs const&> const& handler) const;
// Revoke with event_token
void InboundEndpointPairCreated(event_token const* cookie) const;
// Revoke with event_revoker
XboxLiveEndpointPairTemplate::InboundEndpointPairCreated_revoker InboundEndpointPairCreated(auto_revoke_t, TypedEventHandler<XboxLiveEndpointPairTemplate, XboxLiveInboundEndpointPairCreatedEventArgs const&> const& handler) const;
public event TypedEventHandler<XboxLiveEndpointPairTemplate,XboxLiveInboundEndpointPairCreatedEventArgs> InboundEndpointPairCreated;
function onInboundEndpointPairCreated(eventArgs) { /* Your code */ }
xboxLiveEndpointPairTemplate.addEventListener("inboundendpointpaircreated", onInboundEndpointPairCreated);
xboxLiveEndpointPairTemplate.removeEventListener("inboundendpointpaircreated", onInboundEndpointPairCreated);
- or -
xboxLiveEndpointPairTemplate.oninboundendpointpaircreated = onInboundEndpointPairCreated;
Public Custom Event InboundEndpointPairCreated As TypedEventHandler(Of XboxLiveEndpointPairTemplate, XboxLiveInboundEndpointPairCreatedEventArgs)