System.Drawing.Imaging.PropertyItem
Encapsulates a metadata property to be included in an image file. Not inheritable.
namespace System.Drawing.Imaging
{
public sealed class PropertyItem
{
public int Id { get; set; }
public int Len { get; set; }
public short Type { get; set; }
public byte[] Value { get; set; }
}
}