I was writing a WebApi REST service client, so for me this error was caused by adding References to the System.Net.Http
and System.Net.Http.Formatting
assemblies manually via Add Reference, when I should have added the Microsoft.AspNet.WebApi.Client
package via NuGet.
See also this answer to another question.