System.Web.Mvc.FlashHelpers.FlashInfo C# (CSharp) Méthode

FlashInfo() public static méthode

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