Show / Hide Table of Contents

Struct ExifInterOperability

Represents interoperability data for an exif tag in the platform byte order.

Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
Namespace: ExifLibrary
Assembly: ExifLibrary.dll
Syntax
public struct ExifInterOperability

Constructors

| Improve this Doc View Source

ExifInterOperability(UInt16, InterOpType, UInt32, Byte[])

Initializes a new instance of the ExifInterOperability class.

Declaration
public ExifInterOperability(ushort tagid, InterOpType typeid, uint count, byte[] data)
Parameters
Type Name Description
System.UInt16 tagid

The Exif tag ID.

InterOpType typeid

The Exif data type.

System.UInt32 count

Count of data.

System.Byte[] data

Field data as a byte array.

Properties

| Improve this Doc View Source

Count

Gets the byte count or number of components.

Declaration
public uint Count { get; }
Property Value
Type Description
System.UInt32
| Improve this Doc View Source

Data

Gets the field value as an array of bytes.

Declaration
public byte[] Data { get; }
Property Value
Type Description
System.Byte[]
| Improve this Doc View Source

TagID

Gets the tag ID defined in the Exif standard.

Declaration
public ushort TagID { get; }
Property Value
Type Description
System.UInt16
| Improve this Doc View Source

TypeID

Gets the type code defined in the Exif standard.

Declaration
public InterOpType TypeID { get; }
Property Value
Type Description
InterOpType

Methods

| Improve this Doc View Source

ToString()

Returns the string representation of this instance.

Declaration
public override string ToString()
Returns
Type Description
System.String
Overrides
System.ValueType.ToString()
Back to top Copyright © 2019 Özgür Özçıtak