UserAuthentication Class

Namespace: id3.Bioseal

Definition

Represents the user authentication parameters.
class UserAuthentication
class UserAuthentication implements Finalizable
public partial class UserAuthentication
public class UserAuthentication implements AutoCloseable, Serializable
public class UserAuthentication
typedef struct id3BiosealUserAuthentication *ID3_BIOSEAL_USER_AUTHENTICATION;

Usage

userAuthenticationInstance = id3bioseal.UserAuthentication()

Explicit destruction

# ...
del userAuthenticationInstance
final userAuthenticationInstance = sdk.UserAuthentication();
// ...

Explicit destruction

// ...
userAuthenticationInstance.dispose()
using (var userAuthenticationInstance = new UserAuthentication())
{
   // ...
}

Explicit destruction

var userAuthenticationInstance = new UserAuthentication()
// ...
userAuthenticationInstance.Dispose()
try (UserAuthentication userAuthenticationInstance = new UserAuthentication()) {
// ...
}

Explicit destruction

UserAuthentication userAuthenticationInstance = new UserAuthentication();
// ...
userAuthenticationInstance.close();
private var userAuthenticationInstance: UserAuthentication? = nil
userAuthenticationInstance = try UserAuthentication()
ID3_BIOSEAL_USER_AUTHENTICATION hUserAuthentication{};
int err = id3BiosealUserAuthentication_Initialize(&hUserAuthentication);
if (err == ID3_SUCCESS) {
    // ...
    id3BiosealUserAuthentication_Dispose(&hUserAuthentication);
}

Properties

Name

Type

Description

method

UserAuthenticationMethod

The user authentication method.

passwordFieldName

string

The name of the payload field containing the password value.

passwordHashAlgorithm

string

The hash algorithm used to protect the password value. Possible values are: Sha256, Sha384, Sha512.