Skip to content

Commit

Permalink
Derive from HttpClientHandler on all platforms, not just PLib
Browse files Browse the repository at this point in the history
  • Loading branch information
anaisbetts committed Sep 24, 2014
1 parent 7b52402 commit f8b806d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ModernHttpClient/Android/OkHttpNetworkHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

namespace ModernHttpClient
{
public class NativeMessageHandler : HttpMessageHandler
public class NativeMessageHandler : HttpClientHandler
{
readonly OkHttpClient client = new OkHttpClient();
readonly bool throwOnCaptiveNetwork;
Expand Down
2 changes: 1 addition & 1 deletion src/ModernHttpClient/iOS/NSUrlSessionHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class InflightOperation
public bool IsCompleted { get; set; }
}

public class NativeMessageHandler : HttpMessageHandler
public class NativeMessageHandler : HttpClientHandler
{
readonly NSUrlSession session;

Expand Down

0 comments on commit f8b806d

Please sign in to comment.