コード例 #1
0
        protected override bool ReleaseHandle()
        {
            // PreSharp Bug: Call 'Marshal.GetLastWin32Error' or 'Marshal.GetHRForLastWin32Error' before any other interop call.
#pragma warning suppress 56523 // We are not interested in throwing an exception here if CloseHandle fails.
            return(CAPI.CertFreeCertificateContext(handle));
        }
コード例 #2
0
ファイル: CryptoApi.cs プロジェクト: wenzai007/dotnet462
        protected override bool ReleaseHandle()
        {
            // PreSharp
#pragma warning suppress 56523 // We are not interested in throwing an exception here if CloseHandle fails.
            return(CAPI.CertFreeCertificateContext(handle));
        }
コード例 #3
0
 protected override bool ReleaseHandle()
 {
     return(CAPI.CertFreeCertificateContext(base.handle));
 }