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

FlashError() 공개 정적인 메소드

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