Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SafeSspiAuthDataHandle.cs
Go to the documentation of this file.
2
3namespace System.Net.Security;
4
5internal sealed class SafeSspiAuthDataHandle : SafeHandleZeroOrMinusOneIsInvalid
6{
8 : base(ownsHandle: true)
9 {
10 }
11
12 protected override bool ReleaseHandle()
13 {
14 return global::Interop.SspiCli.SspiFreeAuthIdentity(handle) == global::Interop.SECURITY_STATUS.OK;
15 }
16}