-
-
Notifications
You must be signed in to change notification settings - Fork 150
/
Copy pathProgram.cs
59 lines (51 loc) · 1.93 KB
/
Program.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
//
// Copyright (c) 2020 Laurent Ellerbach and the project contributors
// See LICENSE file in the project root for full license information.
//
using System.Threading;
using nanoFramework.Networking;
using System;
using Microsoft.Extensions.DependencyInjection;
namespace nanoFramework.WebServer.Sample
{
public class Program
{
private static string MySsid = "myssid";
private static string MyPassword = "mypassword";
public static void Main()
{
Console.WriteLine("Hello from a webserver!");
Console.WriteLine("Waiting for network up and IP address...");
bool success;
CancellationTokenSource cs = new(60000);
success = WifiNetworkHelper.ConnectDhcp(
MySsid,
MyPassword,
requiresDateTime: true,
token: cs.Token);
if (!success)
{
Console.WriteLine($"Can't get a proper IP address and DateTime, error: {WifiNetworkHelper.Status}.");
if (WifiNetworkHelper.HelperException != null)
{
Console.WriteLine($"Exception: {WifiNetworkHelper.HelperException}");
}
return;
}
Console.WriteLine($"Connected to network {MySsid}");
var serviceProvider = ConfigureServices();
using (var webServer = new WebServerDi(80, HttpProtocol.Http, new Type[] { typeof(ControllerTest) }, serviceProvider))
{
webServer.Start();
Thread.Sleep(Timeout.Infinite);
}
}
private static ServiceProvider ConfigureServices()
{
return new ServiceCollection()
.AddTransient(typeof(ITextService), typeof(TextService))
.AddSingleton(typeof(ITextServiceSingleton), typeof(TextService))
.BuildServiceProvider();
}
}
}