Person Class

SourceAFIS

Collection of Fingerprints belonging to one person.

Namespace:  SourceAFIS.Simple
Assembly:  SourceAFIS (in SourceAFIS.dll)

Syntax

Visual Basic (Declaration)
<SerializableAttribute> _
Public Class Person
C#
[SerializableAttribute]
public class Person
Visual C++
[SerializableAttribute]
public ref class Person
JavaScript
SourceAFIS.Simple.Person = function();

Type.createClass(
	'SourceAFIS.Simple.Person');

Remarks

This class is primarily a way to group multiple Fingerprints belonging to one person. This is very convenient feature when there are multiple fingerprints per person, because it is possible to match two Persons directly instead of iterating over their Fingerprints.

Id property is provided as a simple means to bind Person objects to application-specific information. If you need more flexibility, inherit from Person class and add application-specific fields as necessary.

This class is designed to be easy to serialize in order to be stored in binary format (BLOB) in application database, binary or XML files, or sent over network. You can either serialize the whole Person or serialize individual Fingerprints.

Inheritance Hierarchy

System..::..Object
  SourceAFIS.Simple..::..Person

See Also