- command
- The DbCommand to be initialized.
- userName
- The user's name to be inserted in the database.
- password
- A hashed String representing the user's password to insert.
- isAdmin
- A Boolean value indicating if the user administrator or not.
| Visual Basic (Declaration) | |
|---|---|
Protected Overridable MustOverride Sub InitializeAddUserCommand( _ ByVal command As DbCommand, _ ByVal userName As String, _ ByVal password As String, _ ByVal isAdmin As Boolean _ ) | |
| Visual Basic (Usage) | Copy Code |
|---|---|
| |
| C# | |
|---|---|
protected virtual abstract void InitializeAddUserCommand( DbCommand command, string userName, string password, bool isAdmin ) | |
| C++/CLI | |
|---|---|
protected: virtual abstract void InitializeAddUserCommand( DbCommand command, String^ userName, String^ password, bool isAdmin ) | |
Parameters
Override this method to provide the database specific behavior for adding a user.
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
Copy Code