16 lines
488 B
C#
16 lines
488 B
C#
// Copyright (c) Microsoft Open Technologies, Inc. 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 ModelBindingWebSite.Controllers
|
|
{
|
|
public class HomeController : Controller
|
|
{
|
|
[HttpGet]
|
|
public IActionResult Index(byte[] byteValues)
|
|
{
|
|
return Content(System.Text.Encoding.UTF8.GetString(byteValues));
|
|
}
|
|
}
|
|
} |