7 references to ContentTypeConstants
Microsoft.AspNetCore.Http.Extensions (7)
HttpRequestJsonExtensions.cs (1)
286
if (mt.MediaType.Equals(
ContentTypeConstants
.JsonContentType, StringComparison.OrdinalIgnoreCase))
HttpResponseJsonExtensions.cs (5)
91
response.ContentType = contentType ??
ContentTypeConstants
.JsonContentTypeWithCharset;
122
response.ContentType = contentType ??
ContentTypeConstants
.JsonContentTypeWithCharset;
164
response.ContentType = contentType ??
ContentTypeConstants
.JsonContentTypeWithCharset;
270
response.ContentType = contentType ??
ContentTypeConstants
.JsonContentTypeWithCharset;
321
response.ContentType = contentType ??
ContentTypeConstants
.JsonContentTypeWithCharset;
RequestDelegateFactory.cs (1)
127
private static readonly string[] DefaultAcceptsAndProducesContentType = new[] {
ContentTypeConstants
.JsonContentType };