Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (360 Bytes)

1
#if !Smartphone && !NETCF
2
using System.Diagnostics;
3
#endif
4
using System;
5
namespace Hammock.Web
6
{
7
#if !Smartphone && !NETCF
8
    [DebuggerDisplay("{Name}:{Value}")]
9
#endif
10
#if !SILVERLIGHT
11
  [Serializable]
12
#endif
13
    public class WebParameter : WebPair
14
    {
15
        public WebParameter(string name, string value) : base(name, value)
16
        {
17

    
18
        }
19
    }
20
}