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

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

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