File: Controllers\EncodersController.cs
Web Access
Project: src\src\Mvc\test\WebSites\TagHelpersWebSite\TagHelpersWebSite.csproj (TagHelpersWebSite)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using Microsoft.AspNetCore.Mvc;
 
namespace TagHelpersWebSite.Controllers;
 
public class EncodersController : Controller
{
    public IActionResult Index()
    {
        ViewData["Title"] = "Using the default HTML encoder";
        return View();
    }
 
    public IActionResult CustomEncoder()
    {
        ViewData["Title"] = "Using a custom HTML encoder";
        return View();
    }
 
    public IActionResult NullEncoder()
    {
        ViewData["Title"] = "Using the null HTML encoder";
        return View();
    }
 
    // We've defined the behavior when multiple tag helpers target the same element. But this is an extreme corner
    // case since one tag helper even using anything but the default HTML encoder is not going to be common.
    public IActionResult TwoEncoders()
    {
        ViewData["Title"] = "Using two HTML encoders";
        return View();
    }
 
    // We've defined the behavior when multiple tag helpers target the same element. But this is an extreme corner
    // case since one tag helper even using anything but the default HTML encoder is not going to be common.
    public IActionResult ThreeEncoders()
    {
        ViewData["Title"] = "Using three HTML encoders";
        return View();
    }
}