File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
src/ImageSharp/Metadata/Profiles Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 1
1
// Copyright (c) Six Labors.
2
2
// Licensed under the Six Labors Split License.
3
3
4
+ using System . Diagnostics ;
4
5
using System . Runtime . CompilerServices ;
5
6
6
7
namespace SixLabors . ImageSharp . Metadata . Profiles . Exif ;
7
8
9
+ [ DebuggerDisplay ( "{Tag} = {IsArray?\" [..]\" :ToString(),nq} ({GetType().Name,nq})" ) ]
8
10
internal abstract class ExifValue : IExifValue , IEquatable < ExifTag >
9
11
{
10
12
protected ExifValue ( ExifTag tag ) => this . Tag = tag ;
Original file line number Diff line number Diff line change 1
1
// Copyright (c) Six Labors.
2
2
// Licensed under the Six Labors Split License.
3
3
4
+ using System . Diagnostics ;
4
5
using System . Text ;
5
6
6
7
namespace SixLabors . ImageSharp . Metadata . Profiles . Iptc ;
7
8
8
9
/// <summary>
9
10
/// Represents a single value of the IPTC profile.
10
11
/// </summary>
12
+ [ DebuggerDisplay ( "{Tag} = {ToString(),nq} ({GetType().Name,nq})" ) ]
11
13
public sealed class IptcValue : IDeepCloneable < IptcValue >
12
14
{
13
15
private byte [ ] data = Array . Empty < byte > ( ) ;
You can’t perform that action at this time.
0 commit comments