File: MS\Internal\Printing\TestHook.cs | Web Access |
Project: src\src\Microsoft.DotNet.Wpf\src\ReachFramework\ReachFramework.csproj (ReachFramework) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. /*++ All rights reserved. Internal API for testing --*/ namespace MS.Internal.Printing { /// <summary> /// Internal API for testing /// </summary> internal static class TestHook { public static void EnableFallbackPrinting(bool value) { _isFallbackPrintingEnabled = value; } internal static bool _isFallbackPrintingEnabled; } } |