add check context events

This commit is contained in:
2024-11-08 07:36:46 +01:00
parent a7a3cfa683
commit 2e420ad902
3 changed files with 18 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
using System.Net;
namespace Pilz.Net.Api;
public class ApiContextEventArgs(HttpListenerContext context) : EventArgs
{
public HttpListenerContext Context { get; } = context;
}