aspnetcore/test/WebSites/ViewComponentWebSite/FullNameController.cs

16 lines
421 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 Microsoft.AspNet.Mvc;
namespace ViewComponentWebSite
{
public class FullNameController : Controller
{
public IActionResult Invoke(string name)
{
ViewBag.Name = name;
return View();
}
}
}