Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (347 Bytes)

1
using System;
2
using System.Runtime.Serialization;
3

    
4
namespace Hammock.Web
5
{
6
#if !SILVERLIGHT
7
    [Serializable]
8
#endif
9
    public enum HttpPostParameterType
10
    {
11
#if !SILVERLIGHT && !Smartphone && !ClientProfiles && !NET20 && !MonoTouch && !NETCF
12
        [EnumMember] Field,
13
        [EnumMember] File
14
#else
15
      Field,
16
        File
17
#endif
18
    }
19
}