You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 14, 2018. It is now read-only.
public void Add(MediaTypeHeaderValue item)
{
if (item == null)
{
throw new ArgumentNullException(nameof(item));
}
Add(item?.ToString()); // <= At this point, we already know that item cannot be null.
}
https://github.com/aspnet/Mvc/blob/master/src/Microsoft.AspNetCore.Mvc.Core/Formatters/MediaTypeCollection.cs#L33
The text was updated successfully, but these errors were encountered: