Skip to content

Instantly share code, notes, and snippets.

@cwe1ss
Created August 9, 2014 13:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cwe1ss/b000cf01c4faae205bd9 to your computer and use it in GitHub Desktop.
Save cwe1ss/b000cf01c4faae205bd9 to your computer and use it in GitHub Desktop.
ICookieContainer
public interface ICookieContainer
{
bool Exists(string key);
string GetValue(string key);
T GetValue<T>(string key);
void SetValue(string key, object value, DateTime expires);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment