- command
- The DbCommand to be initialized.
- userName
- The user name which password to be updated.
- newPassword
- A hashed String representing the user new password to update.
| Visual Basic (Declaration) | |
|---|---|
Overrides Protected Sub InitializeSetUserPasswordCommand( _ ByVal command As DbCommand, _ ByVal userName As String, _ ByVal newPassword As String _ ) | |
| Visual Basic (Usage) | Copy Code |
|---|---|
| |
| C# | |
|---|---|
protected override void InitializeSetUserPasswordCommand( DbCommand command, string userName, string newPassword ) | |
| C++/CLI | |
|---|---|
protected: void InitializeSetUserPasswordCommand( DbCommand command, String^ userName, String^ newPassword ) override | |
Parameters
Override this method to provide the database specific behavior for updating the user password.
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
Copy Code