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 4fa824a commit cdab500Copy full SHA for cdab500
NorthwindCRUD/Middlewares/TenantHeaderValidationMiddleware.cs
@@ -6,11 +6,11 @@ public class TenantHeaderValidationMiddleware
6
{
7
private const string TenantHeaderKey = "X-Tenant-ID";
8
9
- private readonly RequestDelegate _next;
+ private readonly RequestDelegate next;
10
11
public TenantHeaderValidationMiddleware(RequestDelegate next)
12
13
- _next = next;
+ this.next = next;
14
}
15
16
public async Task InvokeAsync(HttpContext context)
@@ -24,7 +24,7 @@ public async Task InvokeAsync(HttpContext context)
24
return;
25
26
27
- await _next(context);
+ await next(context);
28
29
30
private bool IsTenantValid(string tenantId)
0 commit comments