CastingConnection.ErrorOccurred 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.
Indica que ocorreu um erro ao tentar fazer uma conexão de conversão.
// Register
event_token ErrorOccurred(TypedEventHandler<CastingConnection, CastingConnectionErrorOccurredEventArgs const&> const& handler) const;
// Revoke with event_token
void ErrorOccurred(event_token const* cookie) const;
// Revoke with event_revoker
CastingConnection::ErrorOccurred_revoker ErrorOccurred(auto_revoke_t, TypedEventHandler<CastingConnection, CastingConnectionErrorOccurredEventArgs const&> const& handler) const;
public event TypedEventHandler<CastingConnection,CastingConnectionErrorOccurredEventArgs> ErrorOccurred;
function onErrorOccurred(eventArgs) { /* Your code */ }
castingConnection.addEventListener("erroroccurred", onErrorOccurred);
castingConnection.removeEventListener("erroroccurred", onErrorOccurred);
- or -
castingConnection.onerroroccurred = onErrorOccurred;
Public Custom Event ErrorOccurred As TypedEventHandler(Of CastingConnection, CastingConnectionErrorOccurredEventArgs)