ResponseCompressionProvider.ShouldCompressResponse(HttpContext) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Examines the response on first write to see if compression should be used.
public:
virtual bool ShouldCompressResponse(Microsoft::AspNetCore::Http::HttpContext ^ context);
public virtual bool ShouldCompressResponse (Microsoft.AspNetCore.Http.HttpContext context);
abstract member ShouldCompressResponse : Microsoft.AspNetCore.Http.HttpContext -> bool
override this.ShouldCompressResponse : Microsoft.AspNetCore.Http.HttpContext -> bool
Public Overridable Function ShouldCompressResponse (context As HttpContext) As Boolean
Parameters
- context
- HttpContext
The HttpContext.
Returns
true
if the response should be compressed, otherwise false
.