Я пытаюсь добиться того, чтобы при посещении определенного URL-адреса на нем отображалась веб-страница (около html). Это то, что я создал до сих пор:
Как бы вы могли проверить URL-адрес, например https://127.0.0.1/webpage
, а затем создать веб-страницу?
public partial class Service1 : ServiceBase
{
public Service1()
{
InitializeComponent();
}
protected override void OnStart(string[] args)
{
}
protected override void OnStop()
{
}
public HttpResponseMessage Get()
{
var response = new HttpResponseMessage();
response.Content = new StringContent("<html><body>Hello World</body></html>");
response.Content.Headers.ContentType = new MediaTypeHeaderValue("text/html");
return response;
}
}