System.Web.Mvc.TempDataExtension.SetMessage C# (CSharp) Method

SetMessage() public static method

public static SetMessage ( this tempDataDictionary, string message ) : void
tempDataDictionary this
message string
return void
        public static void SetMessage(this TempDataDictionary tempDataDictionary, string message)
        {
            tempDataDictionary[messageKey] = message;
        }
TempDataExtension