We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c233dcb commit 65b9eaaCopy full SHA for 65b9eaa
src/SharpWebserver/Interop/IScriptPage.cs
@@ -7,11 +7,10 @@ it under the terms of the GNU General Public License as published by
7
(at your option) any later version.
8
*/
9
10
-using System.Collections.Generic;
11
-using SharpWebserver.Clients;
+using System.Net;
12
13
namespace SharpWebserver.Interop;
14
public interface IScriptPage
15
{
16
- public byte[] CreatePage(ConnectedClient client, Dictionary<string, string> arguments);
+ public byte[] CreatePage(HttpListenerRequest request);
17
}
0 commit comments