Table of Contents

Interface IExifValue

Namespace
SixLabors.ImageSharp.Metadata.Profiles.Exif
Assembly
SixLabors.ImageSharp.dll

A value of the exif profile.

public interface IExifValue : IDeepCloneable<IExifValue>
Inherited Members

Properties

DataType

Gets the data type of the exif value.

ExifDataType DataType { get; }

Property Value

ExifDataType

IsArray

Gets a value indicating whether the value is an array.

bool IsArray { get; }

Property Value

bool

Tag

Gets the tag of the exif value.

ExifTag Tag { get; }

Property Value

ExifTag

Methods

GetValue()

Gets the value of this exif value.

object? GetValue()

Returns

object

The value of this exif value.

TrySetValue(object?)

Sets the value of this exif value.

bool TrySetValue(object? value)

Parameters

value object

The value of this exif value.

Returns

bool

A value indicating whether the value could be set.