Add ConnectionErrorEventHandler
See original GitHub issue@ColinSullivan1 regarding implementing same/similar functionality as:
Is the idea that we add:
public EventHandler<ConnErrorEventArgs> ConnectionErrorEventHandler = null;
and if that is hooked in, we use that upon disconnect due to error instead of DisconnectedEventHandler
?
Issue Analytics
- State:
- Created 4 years ago
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Capturing SSIS Package Errors Using OnError Event ...
Adding OnError Event Handler to SSIS Package. If you click on the Event Handlers tab in the package, you will see a drop...
Read more >Integration Services (SSIS) Event Handlers - SQL
Click the link on the design surface of the Event Handler tab. Add control flow items to the event handler, and connect items...
Read more >SSIS OnError event handler not firing on failed database ...
When I run the package via a batch file, I see in my batch file log that the package failed to execute because...
Read more >Window: error event - Web APIs - MDN Web Docs - Mozilla
Use the event name in methods like addEventListener() , or set an event handler property. ... addEventListener("error", (event) => {}); onerror = ...
Read more >On Error () Logging by Using Event Handlers
Then Click on the Event Handlers tab. Select OnError Event handler from the right drop box and click on the middle. Here we...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Yep, the
Error:Exception
member would be unused in most handlers, but imo better than adding a new event and associated args. It could be set for the Disconnected and Closed events. The commit looks great!@ColinSullivan1 see referenced commit. Is that the solution you had in mind?