| File: System\Windows\Forms\WindowsFormsSectionHandler.cs | Web Access |
| Project: ..\..\..\src\winforms\src\System.Windows.Forms\System.Windows.Forms.csproj (System.Windows.Forms) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Windows.Forms; // According to our data base, following public class has no usage at runtime. // Keeping the skeleton to unblock compile scenarios, if any. // And to receive feedback if there are any users of this class that we do not know public sealed class WindowsFormsSection { internal static WindowsFormsSection GetSection() { throw new NotImplementedException(); } public WindowsFormsSection() { throw new NotImplementedException(); } public bool JitDebugging { get => throw new NotImplementedException(); set => throw new NotImplementedException(); } }