Table of Contents

Class ImageDataIntegrationClient

Namespace
Sfrep.AppraiseIt.Client.Integration.DataStore.FieldData
Assembly
Sfrep.AppraiseIt.Client.Integration.dll

Encapsulates image data in the dynamic data store that can be used to set the data for image fields and image list fields on dynamic forms.

public sealed class ImageDataIntegrationClient : DataStoreIntegrationClientBase, IDisposable
Inheritance
object
ImageDataIntegrationClient
Implements
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.ReferenceEquals(object, object)
object.ToString()

Properties

CreationDateTime

Gets the date that the photo was taken, as parsed from the image file. This value is null if the value is unavailable.

public DateTime? CreationDateTime { get; }

Property Value

DateTime?

Data

Gets the image file data.

public byte[] Data { get; }

Property Value

byte[]

Elevation

The elevation level where the photo was taken, as parsed from the image file.
This value is null if the value is unavailable.

public int? Elevation { get; }

Property Value

int?

ElevationUnits

The units used for Elevation.

public string ElevationUnits { get; }

Property Value

string

The units used for Elevation.

Supported values:

Feet Meters

FileExtension

Gets the image file extension (with the leading period).

public string FileExtension { get; }

Property Value

string

Id

Gets the image data’s unique identifier in this report.

public int Id { get; }

Property Value

int

Latitude

The latitude where the photo was taken, as parsed from the image file. This value is null if the value is unavailable.

public double? Latitude { get; }

Property Value

double?

Longitude

The latitude where the photo was taken, as parsed from the image file. This value is null if the value is unavailable.

public double? Longitude { get; }

Property Value

double?

Methods

Dispose(bool)

Frees resources used by this instance.

protected override void Dispose(bool disposing)

Parameters

disposing bool

True if called by the Dispose() method. False if called by the finalizer.