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 0f43431 commit 493b619Copy full SHA for 493b619
dotnet/src/dotnetcore/GxClasses.Web/Middleware/GXRestServices.cs
@@ -342,8 +342,11 @@ protected bool ProcessHeaders(string queryId)
342
return true;
343
}
344
345
-
346
+ protected StatusCodeResult SendNotModified()
347
+ {
348
+ return StatusCode((int)HttpStatusCode.NotModified);
349
+ }
350
private void SendCacheHeaders()
351
{
352
if (string.IsNullOrEmpty(context.GetHeader(HttpHeader.CACHE_CONTROL)))
0 commit comments