Acme.OrderManagement.OrderController.DynamicResult C# (CSharp) Метод

DynamicResult() приватный Метод

private DynamicResult ( ) : System.Web.Mvc.ActionResult
Результат System.Web.Mvc.ActionResult
        public ActionResult DynamicResult() {
            return new HypermediaResource()
                .ConfigureProperty("Number", 10, (NumberValue x) => x.Format = "n2")
                .ConfigureProperty("Name", 10, (StringValue x) => x.Format = "textarea")
                .CreateActionResult();
        }
    }