Esempio n. 1
0
 // This method unregisters a given error handler.
 // Returns false if the error handler does not exist.
 public bool UnregisterInitializationErrorHandler(
     IQCARErrorHandler errorHandler)
 {
     return mErrorHandlers.Remove(errorHandler);
 }
Esempio n. 2
0
 // This method registers a new error handler at the Tracker.
 // Initialization error handlers are used to display error messages if
 // something goes wrong during the initialization of the native part of the
 // QCAR extension.
 public void RegisterInitializationErrorHandler(
     IQCARErrorHandler errorHandler)
 {
     mErrorHandlers.Add(errorHandler);
 }