Skip to content

Commit

Permalink
Merge pull request #140 from epetutsc/GetCookies
Browse files Browse the repository at this point in the history
Portable: Facades.GetCookies() replaced by Cookies property
  • Loading branch information
anaisbetts committed Apr 21, 2015
2 parents db621ab + 1f248a1 commit 55d3908
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 55d3908

Please sign in to comment.