AsXmlTemplate Property

SourceAFIS

Fingerprint template in readable XML format.

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

Syntax

Visual Basic (Declaration)
Public Property AsXmlTemplate As XElement
	Get
	Set
C#
public XElement AsXmlTemplate { get; set; }
Visual C++
public:
property XElement^ AsXmlTemplate {
	XElement^ get ();
	void set (XElement^ value);
}
JavaScript
function get_asXmlTemplate();
function set_asXmlTemplate(value);

Field Value

Value of Template converted to SourceAFIS XML template format. This property is nullNothingnullptra null reference (Nothing in Visual Basic) if Template is nullNothingnullptra null reference (Nothing in Visual Basic).

Remarks

Use XML template format where clean data format is more important than compact and fast encoding. XML templates are suitable for XML-based data exchange, encoding of multiple fingerprints along with accompanying data into single XML file, and for debugging and logging purposes.

Value of Finger property is not automatically stored in the XML template. It must be decoded separately.

See Also