using System;
using Cpp2IlInjected;
namespace Microsoft.Win32.SafeHandles
{
/// Represents a safe handle to the Windows registry.
// Token: 0x02000072 RID: 114
[Token(Token = "0x2000072")]
public sealed class SafeRegistryHandle : SafeHandleZeroOrMinusOneIsInvalid
{
/// Initializes a new instance of the class.
/// An object that represents the pre-existing handle to use.
///
/// to reliably release the handle during the finalization phase; to prevent reliable release.
// Token: 0x06000306 RID: 774 RVA: 0x00002050 File Offset: 0x00000250
[Token(Token = "0x6000306")]
[Address(RVA = "0xDB8C40", Offset = "0xDB7C40", VA = "0x180DB8C40")]
public SafeRegistryHandle(IntPtr preexistingHandle, bool ownsHandle)
{
}
// Token: 0x06000307 RID: 775 RVA: 0x000033A8 File Offset: 0x000015A8
[Token(Token = "0x6000307")]
[Address(RVA = "0x4246A0", Offset = "0x4236A0", VA = "0x1804246A0", Slot = "7")]
protected override bool ReleaseHandle()
{
return default(bool);
}
}
}