File: Controllers\HomeController.cs
Web Access
Project: src\src\Security\samples\StaticFilesAuth\StaticFilesAuth.csproj (StaticFilesAuth)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Mvc;
using StaticFilesAuth.Models;
 
namespace StaticFilesAuth.Controllers;
 
public class HomeController : Controller
{
    public IActionResult Index()
    {
        return View();
    }
 
    [ResponseCache(Duration = 0, Location = ResponseCacheLocation.None, NoStore = true)]
    public IActionResult Error()
    {
        return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
    }
}