private static bool HasCloudEventsBatchContentType(HttpRequest request) =>
 MimeUtilities.IsCloudEventsBatchContentType(request?.ContentType);
Beispiel #2
0
 public void IsCloudEventsBatchContentType(string contentType, bool expectedResult) =>
 Assert.Equal(expectedResult, MimeUtilities.IsCloudEventsBatchContentType(contentType));
Beispiel #3
0
 private static bool HasCloudEventsBatchContentType(HttpContent content) =>
 MimeUtilities.IsCloudEventsBatchContentType(content?.Headers?.ContentType?.MediaType);