| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 | 
							- // Licensed to the .NET Foundation under one or more agreements.
 
- // The .NET Foundation licenses this file to you under the Apache 2.0 License.
 
- // See the LICENSE file in the project root for more information. 
 
- using System;
 
- #if NETCOREAPP1_1 || NET46 || NETCOREAPP1_0
 
- using System.Threading;
 
- #endif
 
- #if HAS_DISPATCHER
 
- using System.Windows.Threading;
 
- #endif
 
- namespace ReactiveTests
 
- {
 
- #if HAS_DISPATCHER
 
-     static class DispatcherHelpers
 
-     {
 
-         public static DispatcherWrapper EnsureDispatcher()
 
-         {
 
- #if DESKTOPCLR
 
-             var dispatcher = new Thread(Dispatcher.Run);
 
-             dispatcher.IsBackground = true;
 
-             dispatcher.Start();
 
-             while (Dispatcher.FromThread(dispatcher) == null)
 
-                 Thread.Sleep(10);
 
-             var d = Dispatcher.FromThread(dispatcher);
 
-             while (d.BeginInvoke(new Action(() => { })).Status == DispatcherOperationStatus.Aborted) ;
 
-             return new DispatcherWrapper(d);
 
- #else
 
-             return new DispatcherWrapper(Dispatcher.CurrentDispatcher);
 
- #endif
 
-         }
 
-     }
 
-     class DispatcherWrapper
 
-     {
 
-         private Dispatcher _dispatcher;
 
-         public DispatcherWrapper(Dispatcher dispatcher)
 
-         {
 
-             _dispatcher = dispatcher;
 
-         }
 
-         public Dispatcher Dispatcher { get { return _dispatcher; } }
 
-         public void InvokeShutdown()
 
-         {
 
- #if !USE_SL_DISPATCHER
 
-             _dispatcher.InvokeShutdown();
 
- #endif
 
-         }
 
-         public static implicit operator Dispatcher(DispatcherWrapper wrapper)
 
-         {
 
-             return wrapper._dispatcher;
 
-         }
 
- #if !USE_SL_DISPATCHER
 
-         public event DispatcherUnhandledExceptionEventHandler UnhandledException
 
-         {
 
-             add { _dispatcher.UnhandledException += value; }
 
-             remove { _dispatcher.UnhandledException -= value; }
 
-         }
 
- #endif
 
-         public void BeginInvoke(Action action)
 
-         {
 
-             _dispatcher.BeginInvoke(action);
 
-         }
 
-     }
 
- #endif
 
- }
 
 
  |