Id Property

SourceAFIS

Application-assigned ID for the Person.

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

Syntax

Visual Basic (Declaration)
Public Property Id As Integer
	Get
	Set
C#
public int Id { get; set; }
Visual C++
public:
property int Id {
	int get ();
	void set (int value);
}
JavaScript
function get_id();
function set_id(value);

Remarks

SourceAFIS doesn't use this property. It is provided for applications as an easy means to link Person objects back to application-specific data. Applications can store any integer ID in this field, for example database table key or an array index.

Applications that need to attach more detailed information to the person should inherit from Person class and add fields as necessary.

See Also