Class SignatureInformation
Contains signature information captured by the EFT Terminal as a result to calling the Transaction(TransactionType, Amount) or TransactionAsync(TransactionType, Amount). Immutable class.
Inheritance
System.Object
SignatureInformation
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
Namespace: SIX.TimApi
Assembly: TimApi.dll
Syntax
public class SignatureInformation
Constructors
SignatureInformation(ImageFileFormat, Int32, Int32, Byte[])
Create signature information.
Declaration
public SignatureInformation(ImageFileFormat imageFileFormat, int imageWidth, int imageHeight, byte[] imageData)
Parameters
Type | Name | Description |
---|---|---|
ImageFileFormat | imageFileFormat | |
System.Int32 | imageWidth | |
System.Int32 | imageHeight | |
System.Byte[] | imageData |
Properties
ImageData
Gets the image data.
Declaration
public byte[] ImageData { get; }
Property Value
Type | Description |
---|---|
System.Byte[] | The image data. |
ImageFileFormat
Gets or sets the image file format.
Declaration
public ImageFileFormat ImageFileFormat { get; set; }
Property Value
Type | Description |
---|---|
ImageFileFormat | The image file format. |
ImageHeight
Gets or sets the height of the image.
Declaration
public int ImageHeight { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The height of the image. |
ImageWidth
Gets or sets the width of the image.
Declaration
public int ImageWidth { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The width of the image. |
Methods
ToString()
String representation.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String |
Overrides
System.Object.ToString()