HttpClientsExamples: HttpClient WIP
authorgu.martinm@gmail.com <gu.martinm@gmail.com>
Mon, 2 Jun 2014 01:30:53 +0000 (03:30 +0200)
committergu.martinm@gmail.com <gu.martinm@gmail.com>
Mon, 2 Jun 2014 01:30:53 +0000 (03:30 +0200)
Allgemeines/HttpClientsExamples/HttpClientsExamples/HttpClientsExamples.MonoDevelop.csproj
Allgemeines/HttpClientsExamples/HttpClientsExamples/Program.cs

index 025db8e..c16adcf 100644 (file)
   </PropertyGroup>
   <ItemGroup>
     <Reference Include="System" />
+    <Reference Include="System.Net.Http" />
   </ItemGroup>
   <ItemGroup>
     <Compile Include="Program.cs" />
     <Compile Include="Properties\AssemblyInfo.cs" />
     <Compile Include="WebClientExample.cs" />
     <Compile Include="HttpWebRequestExample.cs" />
+    <Compile Include="HttpClientExample.cs" />
   </ItemGroup>
   <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
 </Project>
\ No newline at end of file
index c9ba93e..be9d1aa 100644 (file)
@@ -10,6 +10,8 @@ namespace HttpClientsExamples
             webclientExample.Test();
             HttpWebRequestExample httpWebRequestExample = new HttpWebRequestExample();
             httpWebRequestExample.Test();
+            HttpClientExample httpClientExample = new HttpClientExample();
+            httpClientExample.Test();
         }
     }
 }