System.Web.Mvc.FlashHelpers.FlashInfo C# (CSharp) 메소드

FlashInfo() 공개 정적인 메소드

public static FlashInfo ( this controller, string message ) : void
controller this
message string
리턴 void
        public static void FlashInfo(this Controller controller,string message)
        {
            controller.TempData["info"] = message;
        }