peekBiodataString

Declaration

HRESULT peekBiodataString([in, out] BSTR* Biodata);

Description

This procedure does the same as GetBiodataString with the only difference that it doesn't erase biodata from driver's memory. On the next data retrieval the same biodata will be returned together with new biodata available at that time.

Return value

Function returns biodata string.

See also

GetBioDataString

 

Sample

C#
//	Start Signing
           
string padSettings = "";
Capturing = SigDev.startCapture("", true, true, true, true, ref padSettings);

// Get encrypted biodata from device
             
string bioData = "";
SigDev.peekBiodataString(ref bioData);