Bottles.Services.Remote.RemoteServicesProxy.CurrentDomain_UnhandledException C# (CSharp) Метод

CurrentDomain_UnhandledException() приватный Метод

private CurrentDomain_UnhandledException ( object sender, UnhandledExceptionEventArgs e ) : void
sender object
e System.UnhandledExceptionEventArgs
Результат void
        void CurrentDomain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
        {
            Console.WriteLine("An an unhandled exception occurred at the remote AppDomain hosted at " + AppDomain.CurrentDomain.BaseDirectory);
            Console.WriteLine(e.ExceptionObject.ToString());
        }