We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b5e599 commit 1e4b895Copy full SHA for 1e4b895
src/ImageSharp/Metadata/Profiles/IPTC/IptcValue.cs
@@ -1,13 +1,15 @@
1
// Copyright (c) Six Labors.
2
// Licensed under the Six Labors Split License.
3
4
+using System.Diagnostics;
5
using System.Text;
6
7
namespace SixLabors.ImageSharp.Metadata.Profiles.Iptc;
8
9
/// <summary>
10
/// Represents a single value of the IPTC profile.
11
/// </summary>
12
+[DebuggerDisplay("{Tag} = {ToString(),nq} ({GetType().Name,nq})")]
13
public sealed class IptcValue : IDeepCloneable<IptcValue>
14
{
15
private byte[] data = Array.Empty<byte>();
0 commit comments