System.Web.Mvc.FlashHelpers.FlashInfo C# (CSharp) Method

FlashInfo() public static method

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