Interface IExifValue
A value of the exif profile.
Inherited Members
Namespace: SixLabors.ImageSharp.Metadata.Profiles.Exif
Assembly: SixLabors.ImageSharp.dll
Syntax
public interface IExifValue : IDeepCloneable<IExifValue>
Properties
| Edit this page View SourceDataType
Gets the data type of the exif value.
Declaration
ExifDataType DataType { get; }
Property Value
Type | Description |
---|---|
ExifDataType |
IsArray
Gets a value indicating whether the value is an array.
Declaration
bool IsArray { get; }
Property Value
Type | Description |
---|---|
bool |
Tag
Gets the tag of the exif value.
Declaration
ExifTag Tag { get; }
Property Value
Type | Description |
---|---|
ExifTag |
Methods
| Edit this page View SourceGetValue()
Gets the value of this exif value.
Declaration
object? GetValue()
Returns
Type | Description |
---|---|
object | The value of this exif value. |
TrySetValue(object?)
Sets the value of this exif value.
Declaration
bool TrySetValue(object? value)
Parameters
Type | Name | Description |
---|---|---|
object | value | The value of this exif value. |
Returns
Type | Description |
---|---|
bool | A value indicating whether the value could be set. |