Win32NativeMethods.cs 267 B

12345678910
  1. using System;
  2. class Win32NativeMethods
  3. {
  4. public static bool IsTokenRestrictedWrapper (IntPtr token)
  5. {
  6. throw new NotSupportedException ("It is native method used by Microsoft System.Data implementation that Mono or non-Windows platform does not support.");
  7. }
  8. }