| File: System\Drawing\LocalAppContextSwitches.cs | Web Access |
| Project: src\winforms\src\System.Drawing.Common\src\System.Drawing.Common.csproj (System.Drawing.Common) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Runtime.CompilerServices; namespace System; internal static partial class LocalAppContextSwitches { private static int s_dontSupportPngFramesInIcons; public static bool DontSupportPngFramesInIcons { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return GetCachedSwitchValue(@"Switch.System.Drawing.DontSupportPngFramesInIcons", ref s_dontSupportPngFramesInIcons); } } private static int s_optimizePrintPreview; public static bool OptimizePrintPreview { [MethodImpl(MethodImplOptions.AggressiveInlining)] get { return GetCachedSwitchValue(@"Switch.System.Drawing.Printing.OptimizePrintPreview", ref s_optimizePrintPreview); } } }