| 123456789101112131415161718192021222324252627282930 | // Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.#if HAS_EDInamespace System.Reactive.PlatformServices{    //    // WARNING: This code is kept *identically* in two places. One copy is kept in System.Reactive.Core for non-PLIB platforms.    //          Another copy is kept in System.Reactive.PlatformServices to enlighten the default lowest common denominator    //          behavior of Rx for PLIB when used on a more capable platform.    //    internal class DefaultExceptionServices/*Impl*/ : IExceptionServices    {        public void Rethrow(Exception exception)        {            System.Runtime.ExceptionServices.ExceptionDispatchInfo.Capture(exception).Throw();        }    }}#elsenamespace System.Reactive.PlatformServices{    internal class DefaultExceptionServices : IExceptionServices    {        public void Rethrow(Exception exception)        {            throw exception;        }    }}#endif
 |