2017-06-12 22:35:19 +00:00
|
|
|
|
using System;
|
|
|
|
|
using Ooui;
|
|
|
|
|
|
|
|
|
|
namespace Samples
|
|
|
|
|
{
|
|
|
|
|
class Program
|
|
|
|
|
{
|
|
|
|
|
static int Main (string[] args)
|
|
|
|
|
{
|
|
|
|
|
var server = new Server ();
|
2017-06-12 23:24:40 +00:00
|
|
|
|
var button = new Button();
|
2017-06-13 03:31:47 +00:00
|
|
|
|
button.Name = "TestButton";
|
2017-06-12 23:24:40 +00:00
|
|
|
|
server.Publish ("/button", button);
|
2017-06-12 22:35:19 +00:00
|
|
|
|
server.RunAsync ("http://*:8080/").Wait ();
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|