摘要:
用其他的 System.Web.UI.WebControls.CommandEventArgs 对象初始化 System.Web.UI.WebControls.CommandEventArgs // 类的新实。 包含事件数据的 System.Web.UI.WebControls.CommandEventArgs
public CommandEventArgs(CommandEventArgs e); // 用指定的命令名和参数初始化 System.Web.UI.WebControls.CommandEventArgs 类的新实例。 // 参数: // 命令的名称。
argument: // 包含该命令参数的 System.Object。
[TargetedPatchingOptOut("Performance critical to inline this type of method across NGen image boundaries")]
public CommandEventArgs(string commandName, object argument); // 获取命令的参数。返回结果: // 包含该命令参数的 System.Object。
public object CommandArgument { get; } // 摘要: // 获取命令的名 // 返回结果: 要执行的命令的名称。 public string CommandName { get;}
}
}