IControllerStandardActionName Property |
Namespace: SOWIWeb.Helper.Interface
/// <summary> /// Get and set Action name (controller context) /// </summary> /// <remarks> /// See <see cref="ControllerContext.RouteData"/> /// </remarks> public string ActionName { get { return this.ControllerContext.RouteData.Values["action"].ToString(); } protected set { this.ControllerContext.RouteData.Values["action"] = value; } }