public API(ref HttpListenerContext context, Server myServer) { this.QS = context.Request.QueryString; this.Request = context.Request; this.Response = context.Response; this.Method = new APIMethod(ref this.QS); }
public static void StartUp() { Web.Server _webServer = new Web.Server(); _webServer.Start(); }