ClientStation.ChangeUserPasswordAsync Method
<ID("ChangeUserPasswordAsync", (int)e.ChangeUserPasswordAsync)> _
<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)> _
Public Function ChangeUserPasswordAsync( _
ByVal username As String, _
ByVal oldPassword As String, _
ByVal newPassword As String _
) As Task(Of Boolean)
This language is not supported or no code example is available.
[ID("ChangeUserPasswordAsync", (int)e.ChangeUserPasswordAsync)]
[System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Advanced)]
public Task<bool> ChangeUserPasswordAsync(
string username,
string oldPassword,
string newPassword
)
This language is not supported or no code example is available.
Parameters
- username
- string
User name
- oldPassword
- string
Current password
- newPassword
- string
New password
Return Value
Task<bool>Flag indicating success (true) or fail (false)