ImageMagick.MagickExceptionHelper.NativeMagickExceptionHelper.Severity C# (CSharp) Method

Severity() public static method

public static Severity ( IntPtr exception ) : int
exception System.IntPtr
return int
      public static int Severity(IntPtr exception)
      {
        #if ANYCPU
        if (NativeLibrary.Is64Bit)
        #endif
        #if WIN64 || ANYCPU
        return (int)NativeMethods.X64.MagickExceptionHelper_Severity(exception);
        #endif
        #if ANYCPU
        else
        #endif
        #if !WIN64 || ANYCPU
        return (int)NativeMethods.X86.MagickExceptionHelper_Severity(exception);
        #endif
      }
    }
MagickExceptionHelper.NativeMagickExceptionHelper