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.
Currently the CanReadType is missing in InputFormatter.
WebAPI Code for this:
publicoverrideboolCanReadType(Typetype){if(type==null){throw Error.ArgumentNull("type");}// If there is a registered non-null serializer, we can support this type.// Otherwise attempt to create the default serializer.objectserializer= GetCachedSerializer(type, throwOnError:false);// Null means we tested it before and know it is not supportedreturnserializer!=null;}
The text was updated successfully, but these errors were encountered:
Currently the
CanReadType
is missing inInputFormatter
.WebAPI Code for this:
The text was updated successfully, but these errors were encountered: