DetailsViewCommandEventArgs(Object, CommandEventArgs) Constructor

Definition

Initializes a new instance of the DetailsViewCommandEventArgs class.

public:
 DetailsViewCommandEventArgs(System::Object ^ commandSource, System::Web::UI::WebControls::CommandEventArgs ^ originalArgs);
public DetailsViewCommandEventArgs (object commandSource, System.Web.UI.WebControls.CommandEventArgs originalArgs);
new System.Web.UI.WebControls.DetailsViewCommandEventArgs : obj * System.Web.UI.WebControls.CommandEventArgs -> System.Web.UI.WebControls.DetailsViewCommandEventArgs
Public Sub New (commandSource As Object, originalArgs As CommandEventArgs)

Parameters

commandSource
Object

The source of the command.

originalArgs
CommandEventArgs

A CommandEventArgs that contains event data.

Remarks

Use this constructor to initialize a new instance of the DetailsViewCommandEventArgs class.

The following table shows the initial property values for an instance of DetailsViewCommandEventArgs.

Property Initial value
CommandArgument The value of the CommandArgument property of the CommandEventArgs contained in the originalArgs parameter.
CommandName The value of the CommandName property of the CommandEventArgs object contained in the originalArgs parameter.
CommandSource The object contained in the commandSource parameter.

Note

This constructor is used primarily by control developers when raising events.

Applies to

See also