| File: System\Drawing\Imaging\PropertyItem.cs | Web Access |
| Project: src\winforms\src\System.Drawing.Common\src\System.Drawing.Common.csproj (System.Drawing.Common) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Drawing.Imaging; /// <summary> /// Encapsulates a metadata property to be included in an image file. /// </summary> public sealed unsafe class PropertyItem { internal PropertyItem() { } /// <summary> /// Represents the ID of the property. /// </summary> public int Id { get; set; } /// <summary> /// Represents the length of the property. /// </summary> public int Len { get; set; } /// <summary> /// Represents the type of the property. /// </summary> public short Type { get; set; } /// <summary> /// Contains the property value. /// </summary> public byte[]? Value { get; set; } internal static PropertyItem FromNative(GdiPlus.PropertyItem* native) { if (native is null) { throw new ArgumentNullException(nameof(native)); } return new() { Id = (int)native->id, Len = (int)native->length, Type = (short)native->type, Value = new Span<byte>(native->value, (int)native->length).ToArray() }; } }