-
-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathControllerTest.cs
28 lines (25 loc) · 1003 Bytes
/
ControllerTest.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
//
// Copyright (c) 2020 Laurent Ellerbach and the project contributors
// See LICENSE file in the project root for full license information.
//
namespace nanoFramework.WebServer.Sample
{
public class ControllerTest
{
private readonly ITextService _textService;
private readonly ITextServiceSingleton _textServiceSingleton;
public ControllerTest(ITextService textService, ITextServiceSingleton textServiceSingleton)
{
_textService = textService;
_textServiceSingleton = textServiceSingleton;
}
[Route("test")]
[Method("GET")]
public void RoutePostTest(WebServerEventArgs e)
{
var content = $"Response from {nameof(ITextService)}: {_textService.GetText()}. Response from {nameof(ITextServiceSingleton)}: {_textServiceSingleton.GetText()}";
e.Context.Response.ContentType = "text/plain";
WebServer.OutPutStream(e.Context.Response, content);
}
}
}