ImageMagick.MagickImage.NativeMagickImage.Decipher C# (CSharp) Метод

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

public Decipher ( string passphrase ) : void
passphrase string
Результат void
      public void Decipher(string passphrase)
      {
        using (INativeInstance passphraseNative = UTF8Marshaler.CreateInstance(passphrase))
        {
          IntPtr exception = IntPtr.Zero;
          #if ANYCPU
          if (NativeLibrary.Is64Bit)
          #endif
          #if WIN64 || ANYCPU
          NativeMethods.X64.MagickImage_Decipher(Instance, passphraseNative.Instance, out exception);
          #endif
          #if ANYCPU
          else
          #endif
          #if !WIN64 || ANYCPU
          NativeMethods.X86.MagickImage_Decipher(Instance, passphraseNative.Instance, out exception);
          #endif
          CheckException(exception);
        }
      }
      public void Deskew(double threshold)
MagickImage.NativeMagickImage