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