File: MS\Win32\DCSafeHandle.cs
Web Access
Project: src\src\Microsoft.DotNet.Wpf\src\WindowsFormsIntegration\WindowsFormsIntegration.csproj (WindowsFormsIntegration)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
        
using Microsoft.Win32.SafeHandles;
using System.Runtime.InteropServices;
using System;
 
namespace MS.Win32
{
    internal sealed class DCSafeHandle : SafeHandleZeroOrMinusOneIsInvalid
    {
        private DCSafeHandle() : base(true) { }
 
        override protected bool ReleaseHandle()
        {
            return UnsafeNativeMethods.DeleteDC(handle);
        }
    }
}