Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SafeNCryptProviderHandle.cs
Go to the documentation of this file.
1using System;
2
4
5public sealed class SafeNCryptProviderHandle : SafeNCryptHandle
6{
8 {
9 return Duplicate<SafeNCryptProviderHandle>();
10 }
11
12 internal void SetHandleValue(IntPtr newHandleValue)
13 {
14 SetHandle(newHandleValue);
15 }
16
17 protected override bool ReleaseNativeHandle()
18 {
20 }
21}