mirror of
https://github.com/AlexMacocian/MTSC.git
synced 2026-07-22 18:29:31 +00:00
15 lines
406 B
C#
15 lines
406 B
C#
using MTSC.ServerSide;
|
|
using MTSC.ServerSide.Handlers;
|
|
using Slim;
|
|
|
|
namespace MTSC.Common.Http.RoutingModules
|
|
{
|
|
internal interface ISetHttpContext
|
|
{
|
|
void SetClientData(ClientData clientData);
|
|
void SetServer(Server server);
|
|
void SetHttpRoutingHandler(HttpRoutingHandler httpRoutingHandler);
|
|
void SetScopedServiceProvider(IServiceProvider serviceProvider);
|
|
}
|
|
}
|