Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where is the System.Net.Http.WebRequestHandler source code?

Tags:

To much fanfare it was announced that there was now a Roslyn powered index for the .NET Reference Source and that

The version of the framework that we currently have indexed is .NET framework 
version 4.5.1.

Yet when I go there to look at HttpClient code all I get are stubs and I cannot find any code for the bits that make it run like System.Net.Http.WebRequestHandler.

Where can I find this code and why hasn't it been included already?

like image 869
rism Avatar asked Aug 05 '14 08:08

rism


People also ask

What is WebRequestHandler?

This class implements a transport handler using HttpWebRequest instances to send HTTP requests to servers.


1 Answers

I found the solution on blogs.msdn.com:

"The WebRequestHandler is not included in the System.Net.Http DLL but rather in System.Net.Http.WebRequest DLL so you have to explicitly include that as a reference in order to see it."

like image 157
BizarroDavid Avatar answered Sep 22 '22 00:09

BizarroDavid