System.Web.UI.WebControls.DataGrid.OnSortCommand C# (CSharp) Method

OnSortCommand() protected method

protected OnSortCommand ( System.Web.UI.WebControls.DataGridSortCommandEventArgs e ) : void
e System.Web.UI.WebControls.DataGridSortCommandEventArgs
return void
		protected virtual void OnSortCommand (DataGridSortCommandEventArgs e)
		{
			DataGridSortCommandEventHandler handler = (DataGridSortCommandEventHandler) Events [SortCommandEvent];
			if (handler != null)
				handler (this, e);
		}