This is prerelease (ignore)

pull/328/head
David Hall 2022-09-22 15:28:13 -06:00
parent 5cf6ee8a42
commit b18d7d3eca
1 changed files with 4 additions and 0 deletions

View File

@ -12,6 +12,8 @@ using static Vanara.PInvoke.Kernel32;
namespace Vanara.Net;
#if RELEASE
public class DistributedRoutingTable
{
private SafeHDRT hDrt;
@ -455,6 +457,8 @@ public abstract class DrtSecurityProvider
}
}
static HRESULT Execute(Action action) { try { action(); return HRESULT.S_OK; } catch (Exception ex) { return ex.HResult; } }
HRESULT InternalAttach(IntPtr pvContext) => HRESULT.S_OK;
HRESULT InternalDecryptData(IntPtr pvContext, in DRT_DATA pKeyToken, IntPtr pvKeyContext, uint dwBuffers, DRT_DATA[] pData) => throw new NotImplementedException();
void InternalDetach(IntPtr pvContext) { }