Skip to content

Commit

Permalink
Portable: Facades.GetCookies() replaced by Cookies property
Browse files Browse the repository at this point in the history
  • Loading branch information
Ewald Petutschnig committed Apr 20, 2015
1 parent db621ab commit 1f248a1
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/ModernHttpClient/Facades.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System;
using System.Collections.Generic;
using System.Net.Http;
using System.Threading.Tasks;
using System.Threading;
Expand Down Expand Up @@ -74,9 +75,12 @@ public void SetCookies(Cookie[] cookies)
throw new Exception(wrongVersion);
}

public Cookie[] GetCookies()
public ICollection<Cookie> Cookies
{
throw new Exception(wrongVersion);
get
{
throw new Exception(wrongVersion);
}
}
}
}

0 comments on commit 1f248a1

Please sign in to comment.