コード例 #1
0
ファイル: Program.cs プロジェクト: d96stuff/TeamBuildScreen
        static void Main(string[] args)
        {
            var host = new HttpListenerHostWithConfiguration {
                Configuration = new Configurator()
            };

            host.Initialize(new[] { "http://+:9222/" }, "/", null);

            host.StartListening();
            System.Console.WriteLine("Press any key to exit.");
            System.Console.ReadKey();
            host.StopListening();
            host.Close();
        }
コード例 #2
0
ファイル: Service.cs プロジェクト: d96stuff/TeamBuildScreen
 protected override void OnStart(string[] args)
 {
     host.StartListening();
 }