| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 | // 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.ComponentModel;using System.Reactive.PlatformServices;namespace System.Reactive{    internal static class ExceptionHelpers    {        private static Lazy<IExceptionServices> s_services = new Lazy<IExceptionServices>(Initialize);        public static void Throw(this Exception exception) => s_services.Value.Rethrow(exception);        public static void ThrowIfNotNull(this Exception exception)        {            if (exception != null)            {                s_services.Value.Rethrow(exception);            }        }        private static IExceptionServices Initialize()        {#pragma warning disable CS0618 // Type or member is obsolete            return PlatformEnlightenmentProvider.Current.GetService<IExceptionServices>() ?? new DefaultExceptionServices();#pragma warning restore CS0618 // Type or member is obsolete        }    }}namespace System.Reactive.PlatformServices{    /// <summary>    /// (Infrastructure) Services to rethrow exceptions.    /// </summary>    /// <remarks>    /// This type is used by the Rx infrastructure and not meant for public consumption or implementation.    /// No guarantees are made about forward compatibility of the type's functionality and its usage.    /// </remarks>    [EditorBrowsable(EditorBrowsableState.Never)]    public interface IExceptionServices    {        /// <summary>        /// Rethrows the specified exception.        /// </summary>        /// <param name="exception">Exception to rethrow.</param>        void Rethrow(Exception exception);    }}
 |