System.Web.UI.WebControls.GridView.OnRowCommand C# (CSharp) Method

OnRowCommand() protected method

protected OnRowCommand ( GridViewCommandEventArgs e ) : void
e GridViewCommandEventArgs
return void
		protected virtual void OnRowCommand (GridViewCommandEventArgs e)
		{
			if (Events != null) {
				GridViewCommandEventHandler eh = (GridViewCommandEventHandler) Events [RowCommandEvent];
				if (eh != null) eh (this, e);
			}
		}