Statistics
| Branch: | Revision:

root / trunk / hammock / src / net35 / Hammock / Web / HttpCookieParameter.cs @ 0eea575a

History | View | Annotate | Download (259 Bytes)

1
using System;
2

    
3
namespace Hammock.Web
4
{
5
    public class HttpCookieParameter : WebParameter
6
    {
7
        public virtual Uri Domain { get; set; }
8

    
9
        public HttpCookieParameter(string name, string value) : base(name, value)
10
        {
11

    
12
        }
13
    }
14
}