Suchergebnisse für Anfrage "unhandled-exception"

5 die antwort

Wie kann ich die .NET UnhandledException-Behandlung in einem Windows-Dienst einrichten?

protected override void OnStart(string[] args) { AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException); Thread.Sleep(10000); throw new Exception(); } ...

TOP-Veröffentlichungen