// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information. using System.ComponentModel; using System.Reactive.PlatformServices; namespace System.Reactive { internal static class ExceptionHelpers { private static Lazy s_services = new Lazy(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() { return PlatformEnlightenmentProvider.Current.GetService() ?? new DefaultExceptionServices(); } } } namespace System.Reactive.PlatformServices { /// /// (Infrastructure) Services to rethrow exceptions. /// /// /// 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. /// [EditorBrowsable(EditorBrowsableState.Never)] public interface IExceptionServices { /// /// Rethrows the specified exception. /// /// Exception to rethrow. void Rethrow(Exception exception); } }