| SQLiteIdentityServiceChangePin Method |
Change the PIN for the user
Namespace:
SanteDB.DisconnectedClient.SQLite.Security
Assembly:
SanteDB.DisconnectedClient.SQLite (in SanteDB.DisconnectedClient.SQLite.dll) Version: 2.2.1
Syntax public void ChangePin(
string userName,
byte[] pin,
IPrincipal principal
)
Public Sub ChangePin (
userName As String,
pin As Byte(),
principal As IPrincipal
)
public:
virtual void ChangePin(
String^ userName,
array<unsigned char>^ pin,
IPrincipal^ principal
) sealed
abstract ChangePin :
userName : string *
pin : byte[] *
principal : IPrincipal -> unit
override ChangePin :
userName : string *
pin : byte[] *
principal : IPrincipal -> unit
Parameters
- userName
- Type: SystemString
The name of the user to change the PIN for - pin
- Type: SystemByte
The PIN to change to - principal
- Type: System.Security.PrincipalIPrincipal
[Missing <param name="principal"/> documentation for "M:SanteDB.DisconnectedClient.SQLite.Security.SQLiteIdentityService.ChangePin(System.String,System.Byte[],System.Security.Principal.IPrincipal)"]
Implements
IPinAuthenticationServiceChangePin(String, Byte, IPrincipal)Remarks Only the currently logged in credential can change a PIN number for themselves
See Also