DebugSettings.BindingFailed Event
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public:
virtual event BindingFailedEventHandler ^ BindingFailed;
// Register
event_token BindingFailed(BindingFailedEventHandler const& handler) const;
// Revoke with event_token
void BindingFailed(event_token const* cookie) const;
// Revoke with event_revoker
DebugSettings::BindingFailed_revoker BindingFailed(auto_revoke_t, BindingFailedEventHandler const& handler) const;
public event BindingFailedEventHandler BindingFailed;
function onBindingFailed(eventArgs) { /* Your code */ }
debugSettings.addEventListener("bindingfailed", onBindingFailed);
debugSettings.removeEventListener("bindingfailed", onBindingFailed);
- or -
debugSettings.onbindingfailed = onBindingFailed;
Public Custom Event BindingFailed As BindingFailedEventHandler