File tree Expand file tree Collapse file tree
src/ImageSharp/Metadata/Profiles Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11// Copyright (c) Six Labors.
22// Licensed under the Six Labors Split License.
33
4+ using System . Diagnostics ;
45using System . Runtime . CompilerServices ;
56
67namespace SixLabors . ImageSharp . Metadata . Profiles . Exif ;
78
9+ [ DebuggerDisplay ( "{Tag} = {IsArray?\" [..]\" :ToString(),nq} ({GetType().Name,nq})" ) ]
810internal abstract class ExifValue : IExifValue , IEquatable < ExifTag >
911{
1012 protected ExifValue ( ExifTag tag ) => this . Tag = tag ;
Original file line number Diff line number Diff line change 11// Copyright (c) Six Labors.
22// Licensed under the Six Labors Split License.
33
4+ using System . Diagnostics ;
45using System . Text ;
56
67namespace SixLabors . ImageSharp . Metadata . Profiles . Iptc ;
78
89/// <summary>
910/// Represents a single value of the IPTC profile.
1011/// </summary>
12+ [ DebuggerDisplay ( "{Tag} = {ToString(),nq} ({GetType().Name,nq})" ) ]
1113public sealed class IptcValue : IDeepCloneable < IptcValue >
1214{
1315 private byte [ ] data = Array . Empty < byte > ( ) ;
You can’t perform that action at this time.
0 commit comments