| OAuthIdentityProviderChangePassword Method |
Changes the users password.
Namespace:
SanteDB.DisconnectedClient.Security
Assembly:
SanteDB.DisconnectedClient.Core (in SanteDB.DisconnectedClient.Core.dll) Version: 2.2.1
Syntax public void ChangePassword(
string userName,
string newPassword,
IPrincipal principal
)
Public Sub ChangePassword (
userName As String,
newPassword As String,
principal As IPrincipal
)
public:
virtual void ChangePassword(
String^ userName,
String^ newPassword,
IPrincipal^ principal
) sealed
abstract ChangePassword :
userName : string *
newPassword : string *
principal : IPrincipal -> unit
override ChangePassword :
userName : string *
newPassword : string *
principal : IPrincipal -> unit
Parameters
- userName
- Type: SystemString
The username of the user. - newPassword
- Type: SystemString
The new password of the user. - principal
- Type: System.Security.PrincipalIPrincipal
The authentication principal (the user that is changing the password).
Implements
IIdentityProviderServiceChangePassword(String, String, IPrincipal)See Also