10 lines
157 B
C#
10 lines
157 B
C#
using System.Net;
|
|
|
|
namespace SimpleHttpServer;
|
|
public class HttpResponseBuilder {
|
|
|
|
public void SendResponse(HttpListenerResponse response) {
|
|
|
|
}
|
|
}
|