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

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

public RemoveProfile ( string name ) : void
name string
Результат void
      public void RemoveProfile(string name)
      {
        using (INativeInstance nameNative = UTF8Marshaler.CreateInstance(name))
        {
          #if ANYCPU
          if (NativeLibrary.Is64Bit)
          #endif
          #if WIN64 || ANYCPU
          NativeMethods.X64.MagickImage_RemoveProfile(Instance, nameNative.Instance);
          #endif
          #if ANYCPU
          else
          #endif
          #if !WIN64 || ANYCPU
          NativeMethods.X86.MagickImage_RemoveProfile(Instance, nameNative.Instance);
          #endif
        }
      }
      public void ResetArtifactIterator()
MagickImage.NativeMagickImage