System.Net.Cookie
namespace System.Net
{
public sealed class Cookie
{
public string Comment { get; set; }
public Uri CommentUri { get; set; }
public bool Discard { get; set; }
public string Domain { get; set; }
public bool Expired { get; set; }
public DateTime Expires { get; set; }
public bool HttpOnly { get; set; }
public string Name { get; set; }
public string Path { get; set; }
public string Port { get; set; }
public bool Secure { get; set; }
public DateTime TimeStamp { get; }
public string Value { get; set; }
public int Version { get; set; }
public Cookie();
public Cookie(string name, string value);
public Cookie(string name, string value, string path);
public Cookie(string name, string value, string path, string domain);
}
}