- updateConfigurationCommand
- The DbCommand to be initialized.
- componentName
- The component name having the configuration being updated.
- data
- A String representing the configuration data.
| Visual Basic (Declaration) | |
|---|---|
Protected Overridable MustOverride Sub InitializeUpdateConfigurationCommand( _ ByVal updateConfigurationCommand As DbCommand, _ ByVal componentName As String, _ ByVal data As String _ ) | |
| Visual Basic (Usage) | Copy Code |
|---|---|
| |
| C# | |
|---|---|
protected virtual abstract void InitializeUpdateConfigurationCommand( DbCommand updateConfigurationCommand, string componentName, string data ) | |
| C++/CLI | |
|---|---|
protected: virtual abstract void InitializeUpdateConfigurationCommand( DbCommand updateConfigurationCommand, String^ componentName, String^ data ) | |
Parameters
Override this method to provide the database specific behavior for updating a component configuration data.
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family
Copy Code