HttpRequestJsonExtensions.HasJsonContentType(HttpRequest) Method

Definition

Checks the Content-Type header for JSON types.

public:
[System::Runtime::CompilerServices::Extension]
 static bool HasJsonContentType(Microsoft::AspNetCore::Http::HttpRequest ^ request);
public static bool HasJsonContentType (this Microsoft.AspNetCore.Http.HttpRequest request);
static member HasJsonContentType : Microsoft.AspNetCore.Http.HttpRequest -> bool
<Extension()>
Public Function HasJsonContentType (request As HttpRequest) As Boolean

Parameters

request
HttpRequest

Returns

true if the Content-Type header represents a JSON content type; otherwise, false.

Applies to