Example #1
0
 public SocketMiddelware(RequestDelegate next, SocketHandler handler)
 {
     _next   = next;
     Handler = handler;
 }
Example #2
0
 public static IApplicationBuilder MapSockets(this IApplicationBuilder app, PathString path, SocketHandler socket)
 {
     return(app.Map(path, (x) => x.UseMiddleware <SocketMiddelware>(socket)));
 }