59 lines
1.3 KiB
C#
59 lines
1.3 KiB
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 System.Threading.Tasks;
|
|
using Microsoft.AspNet.Http;
|
|
using Microsoft.AspNet.Mvc;
|
|
using MvcSample.Web.Models;
|
|
|
|
namespace MvcSample.Web.RandomNameSpace
|
|
{
|
|
public class Home2Controller
|
|
{
|
|
private User _user = new User() { Name = "User Name", Address = "Home Address" };
|
|
|
|
[Activate]
|
|
public HttpResponse Response
|
|
{
|
|
get; set;
|
|
}
|
|
|
|
public string Index()
|
|
{
|
|
return "Hello World: my namespace is " + this.GetType().Namespace;
|
|
}
|
|
|
|
public ActionResult Something()
|
|
{
|
|
return new ContentResult
|
|
{
|
|
Content = "Hello World From Content"
|
|
};
|
|
}
|
|
|
|
public ActionResult Hello()
|
|
{
|
|
return new ContentResult
|
|
{
|
|
Content = "Hello World",
|
|
};
|
|
}
|
|
|
|
public async Task Raw()
|
|
{
|
|
await Response.WriteAsync("Hello World raw");
|
|
}
|
|
|
|
public ActionResult UserJson()
|
|
{
|
|
var jsonResult = new JsonResult(_user);
|
|
|
|
return jsonResult;
|
|
}
|
|
|
|
public User User()
|
|
{
|
|
return _user;
|
|
}
|
|
}
|
|
} |