DataSourceView.ExecuteCommand Method

Definition

Executes the specified command.

Overloads

ExecuteCommand(String, IDictionary, IDictionary, DataSourceViewOperationCallback)

Executes the specified command.

ExecuteCommand(String, IDictionary, IDictionary)

Executes the specified command.

ExecuteCommand(String, IDictionary, IDictionary, DataSourceViewOperationCallback)

Executes the specified command.

public:
 virtual void ExecuteCommand(System::String ^ commandName, System::Collections::IDictionary ^ keys, System::Collections::IDictionary ^ values, System::Web::UI::DataSourceViewOperationCallback ^ callback);
public virtual void ExecuteCommand (string commandName, System.Collections.IDictionary keys, System.Collections.IDictionary values, System.Web.UI.DataSourceViewOperationCallback callback);
abstract member ExecuteCommand : string * System.Collections.IDictionary * System.Collections.IDictionary * System.Web.UI.DataSourceViewOperationCallback -> unit
override this.ExecuteCommand : string * System.Collections.IDictionary * System.Collections.IDictionary * System.Web.UI.DataSourceViewOperationCallback -> unit
Public Overridable Sub ExecuteCommand (commandName As String, keys As IDictionary, values As IDictionary, callback As DataSourceViewOperationCallback)

Parameters

commandName
String

The name of the command.

keys
IDictionary

A dictionary of object keys or row keys to act on.

values
IDictionary

A dictionary of name/value pairs that represent data elements and their values.

Remarks

This method does not return a value.

Applies to

ExecuteCommand(String, IDictionary, IDictionary)

Executes the specified command.

protected:
 virtual int ExecuteCommand(System::String ^ commandName, System::Collections::IDictionary ^ keys, System::Collections::IDictionary ^ values);
protected virtual int ExecuteCommand (string commandName, System.Collections.IDictionary keys, System.Collections.IDictionary values);
abstract member ExecuteCommand : string * System.Collections.IDictionary * System.Collections.IDictionary -> int
override this.ExecuteCommand : string * System.Collections.IDictionary * System.Collections.IDictionary -> int
Protected Overridable Function ExecuteCommand (commandName As String, keys As IDictionary, values As IDictionary) As Integer

Parameters

commandName
String

The name of the command.

keys
IDictionary

A dictionary of object keys or row keys to act on.

values
IDictionary

A dictionary of name/value pairs that represent data elements and their values.

Returns

The number of items that were affected by the operation.

Applies to