SSR_GetUserTmpStr

Definition

Usage

Obtain the fingerprint templates of a user in string form. The only difference between this function and GetUserTmp is the fingerprint template format.

Parameter

Device number

User ID

Index of the fingerprint. The value ranges from 0 to 9.

Fingerprint template data

Fingerprint template length

Return Value

Return True if it is successful, or return False.

Related Function

SetUserTmpStr

 

Ejemplo

C#

        /// <summary>
/// Obtain the fingerprint templates of a user in string form. The only difference between this function and 
/// GetUserTmp is the fingerprint template format. 
/// </summary>
/// <param name="dwEnrollNumber">User ID </param>
/// <param name="dwFingerIndex">Index of the fingerprint.The value ranges from 0 to 9. </param>
/// <param name="IP"> Ip of device </param>
/// <param name="Port"> Port of Device </param>
/// <param name="MachineNumber"> Device Number </param>
private void SSR_GetUserTmpStr(string dwEnrollNumber, int dwFingerIndex, string IP = "10.0.0.44", int Port = 4370, int MachineNumber = 1)
{
        //Create Standalone SDK class dynamicly.
	zkemkeeper.CZKEMClass axCZKEM1 = new zkemkeeper.CZKEMClass();
	axCZKEM1.Connect_Net(IP, Port);
        int idwErrorCode = 0;
        string TmpData = "";
        int TmpLength = 0;
        if (axCZKEM1.SSR_GetUserTmpStr(MachineNumber, dwEnrollNumber, dwFingerIndex, out TmpData, out TmpLength))
	{
		MessageBox.Show("User Id:" + dwEnrollNumber + ", dwFingerIndex: " + dwFingerIndex.ToString() + ", TmpData: " + TmpData + ", TmpLength: " + TmpLength.ToString(), "Success");
	}
        else
	{
		axCZKEM1.GetLastError(ref idwErrorCode);
		MessageBox.Show("Operation failed,ErrorCode=" + idwErrorCode.ToString(), "Error");
	}
}

VB

        ''' <summary>
''' Obtain the fingerprint templates of a user in string form. The only difference between this function and 
''' GetUserTmp is the fingerprint template format. 
''' </summary>
''' <param name="dwEnrollNumber">User ID </param>
''' <param name="dwFingerIndex">Index of the fingerprint.The value ranges from 0 to 9. </param>
''' <param name="IP"> Ip of device </param>
''' <param name="Port"> Port of Device </param>
''' <param name="MachineNumber"> Device Number </param>
Private Sub SSR_GetUserTmpStr(ByVal dwEnrollNumber As String, ByVal dwFingerIndex As Integer, Optional IP As String = "10.0.0.44", Optional Port As Integer = 4370, Optional MachineNumber As Integer = 1)
        'Create Standalone SDK class dynamicly.
        Dim axCZKEM1 As zkemkeeper.CZKEMClass = New zkemkeeper.CZKEMClass()
	axCZKEM1.Connect_Net(IP, Port)
        Dim idwErrorCode As Integer = 0
        Dim TmpData As String = ""
        Dim TmpLength As Integer = 0
        If axCZKEM1.SSR_GetUserTmpStr(MachineNumber, dwEnrollNumber, dwFingerIndex, TmpData, TmpLength) Then
		MessageBox.Show("User Id:" + dwEnrollNumber + ", dwFingerIndex: " + dwFingerIndex.ToString() + ", TmpData: " + TmpData + ", TmpLength: " + TmpLength.ToString(), "Success")
        Else
		axCZKEM1.GetLastError(idwErrorCode)
		MessageBox.Show("Operation failed,ErrorCode=" + idwErrorCode.ToString(), "Error")
        End If
End Sub