ImageMagick.MagickFormatInfo.NativeMagickFormatInfo.GetInfoByName C# (CSharp) Метод

GetInfoByName() публичный Метод

public GetInfoByName ( string name ) : void
name string
Результат void
      public void GetInfoByName(string name)
      {
        using (INativeInstance nameNative = UTF8Marshaler.CreateInstance(name))
        {
          IntPtr exception = IntPtr.Zero;
          IntPtr result;
          #if ANYCPU
          if (NativeLibrary.Is64Bit)
          #endif
          #if WIN64 || ANYCPU
          result = NativeMethods.X64.MagickFormatInfo_GetInfoByName(nameNative.Instance, out exception);
          #endif
          #if ANYCPU
          else
          #endif
          #if !WIN64 || ANYCPU
          result = NativeMethods.X86.MagickFormatInfo_GetInfoByName(nameNative.Instance, out exception);
          #endif
          CheckException(exception);
          Instance = result;
        }
      }
      public static bool Unregister(string name)