ALE.ConsoleTest.TestController.Foo C# (CSharp) 메소드

Foo() 공개 메소드

public Foo ( System.Action next, string foo ) : void
next System.Action
foo string
리턴 void
        public void Foo(Action next, string foo)
        {
            Response.Render("ViewTest.cshtml", new TestModel {Title = foo}, (ex) => next());
        }
TestController