Added hammock project to debug streaming issues
[pithos-ms-client] / trunk / hammock / src / net35 / Hammock / Web / WebHeader.cs
1 using System;
2 using System.Diagnostics;
3
4 namespace Hammock.Web
5 {
6 #if !Smartphone && !NETCF
7     [DebuggerDisplay("{Name}:{Value}")]
8 #endif
9 #if !Silverlight
10     [Serializable]
11 #endif
12     public class WebHeader : WebPair
13     {
14         public WebHeader(string name, string value) : base(name, value)
15         {
16         }
17     }
18 }