C# Class WinBioNET.WinBioConfiguration

Datei anzeigen Open project: JcBernack/WinBioNET

Public Methods

Method Description
AddDatabase ( System.Guid databaseId, int unitId ) : void

Adds a new biometric database compatible to the given unit. Throws an exception if the database already exists.

AddUnit ( System.Guid databaseId, int unitId ) : void

Adds a unit to the sensor pool related to the given biometric database.

DatabaseExists ( System.Guid databaseId ) : bool

Determines whether the given database exists.

RemoveDatabase ( System.Guid databaseId ) : void

Removes the given biometric database and all its data. Also removes all units from the corresponding sensor pool.

RemoveUnit ( System.Guid databaseId, int unitId ) : void

Adds a unit to the sensor pool related to the given biometric database.

Private Methods

Method Description
KeyGuid ( System.Guid guid ) : string

Method Details

AddDatabase() public static method

Adds a new biometric database compatible to the given unit. Throws an exception if the database already exists.
public static AddDatabase ( System.Guid databaseId, int unitId ) : void
databaseId System.Guid
unitId int
return void

AddUnit() public static method

Adds a unit to the sensor pool related to the given biometric database.
public static AddUnit ( System.Guid databaseId, int unitId ) : void
databaseId System.Guid
unitId int
return void

DatabaseExists() public static method

Determines whether the given database exists.
public static DatabaseExists ( System.Guid databaseId ) : bool
databaseId System.Guid
return bool

RemoveDatabase() public static method

Removes the given biometric database and all its data. Also removes all units from the corresponding sensor pool.
public static RemoveDatabase ( System.Guid databaseId ) : void
databaseId System.Guid
return void

RemoveUnit() public static method

Adds a unit to the sensor pool related to the given biometric database.
public static RemoveUnit ( System.Guid databaseId, int unitId ) : void
databaseId System.Guid
unitId int
return void