25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- using Microsoft.AspNetCore;
- using Microsoft.AspNetCore.Hosting;
- using MQTTnet.AspNetCore;
- using System.Threading.Tasks;
- using MQTTnet.AspNetCore.Extensions;
-
- namespace MQTTnet.TestApp.AspNetCore2
- {
- public static class Program
- {
- public static Task Main(string[] args)
- {
- return BuildWebHost(args).RunAsync();
- }
-
- private static IWebHost BuildWebHost(string[] args) =>
- WebHost.CreateDefaultBuilder(args)
- .UseKestrel(o =>
- {
- o.ListenAnyIP(1883, l => l.UseMqtt());
- o.ListenAnyIP(5000); // default http pipeline
- })
- .UseStartup<Startup>()
- .Build();
- }
- }
|