Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SafeNCryptKeyHandle.cs
Go to the documentation of this file.
1using System;
3
5
6public sealed class SafeNCryptKeyHandle : SafeNCryptHandle
7{
9 {
10 }
11
13 : base(handle, parentHandle)
14 {
15 }
16
18 {
19 return Duplicate<SafeNCryptKeyHandle>();
20 }
21
22 protected override bool ReleaseNativeHandle()
23 {
25 }
26}
SafeNCryptKeyHandle(IntPtr handle, SafeHandle parentHandle)