internal static IntPtr SCardCancel( [In] IntPtr hContext) { if (_osUnixPlatform == OSUnixPlatform.Linux) { return(LinuxNativeMethods.SCardCancel(hContext)); } else if (_osUnixPlatform == OSUnixPlatform.OSX) { return(OSXNativeMethods.SCardCancel(hContext)); } else { throw new NotImplementedException(); } }