using System; using Cpp2IlInjected; namespace Microsoft.Win32.SafeHandles { /// Represents a wrapper class for a file handle. // Token: 0x02000070 RID: 112 [Token(Token = "0x2000070")] public sealed class SafeFileHandle : 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 (not recommended). // Token: 0x06000302 RID: 770 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x6000302")] [Address(RVA = "0xDB8C40", Offset = "0xDB7C40", VA = "0x180DB8C40")] public SafeFileHandle(IntPtr preexistingHandle, bool ownsHandle) { } // Token: 0x06000303 RID: 771 RVA: 0x00003378 File Offset: 0x00001578 [Token(Token = "0x6000303")] [Address(RVA = "0xDB8BD0", Offset = "0xDB7BD0", VA = "0x180DB8BD0", Slot = "7")] protected override bool ReleaseHandle() { return default(bool); } } }