26 lines
1012 B
C#
26 lines
1012 B
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Microsoft.AspNetCore.Mvc.ViewFeatures;
|
|
|
|
namespace BasicWebSite
|
|
{
|
|
public class StoreIntoTempDataActionResult : IActionResult
|
|
{
|
|
public Task ExecuteResultAsync(ActionContext context)
|
|
{
|
|
// store information in temp data
|
|
var httpContext = context.HttpContext;
|
|
var tempDataDictionaryFactory = httpContext.RequestServices.GetRequiredService<ITempDataDictionaryFactory>();
|
|
var tempDataDictionary = tempDataDictionaryFactory.GetTempData(httpContext);
|
|
tempDataDictionary["Name"] = "Michael";
|
|
|
|
return httpContext.Response.WriteAsync($"Hello from {nameof(StoreIntoTempDataActionResult)}");
|
|
}
|
|
}
|
|
}
|