CrossUI.Runner.WPF.FileWatcher.dispatcherError C# (CSharp) Method

dispatcherError() public method

public dispatcherError ( Exception e ) : void
e System.Exception
return void
        void dispatcherError(Exception e)
        {
            _dispatcher.BeginInvoke((Action)(() =>
            {
                if (_watcher.EnableRaisingEvents)
                    Error.raise(e);
            }));
        }