Upscaledb.Database.SetErrorHandler C# (CSharp) Метод

SetErrorHandler() публичный статический Метод

Sets the global error handler
This method wraps the native ups_set_error_handler function.

This handler will receive all debug messages that are emitted by upscaledb. You can install the default handler by setting eh to null.
public static SetErrorHandler ( ErrorHandler eh ) : void
eh ErrorHandler The delegate which is called whenever an /// error message is emitted; set to null to set the default /// error handler
Результат void
        public static void SetErrorHandler(ErrorHandler eh)
        {
            NativeMethods.SetErrorHandler(eh);
        }