Statistics
| Branch: | Revision:

root / trunk / hammock / src / net35 / Hammock / Authentication / OAuth / OAuthType.cs @ 0eea575a

History | View | Annotate | Download (523 Bytes)

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

    
4
namespace Hammock.Authentication.OAuth
5
{
6
#if !SILVERLIGHT
7
    [Serializable]
8
#endif
9
    public enum OAuthType
10
    {
11
#if !SILVERLIGHT && !Smartphone && !ClientProfiles && !NET20 && !MonoTouch && !NETCF
12
        [EnumMember] RequestToken,
13
        [EnumMember] AccessToken,
14
        [EnumMember] ProtectedResource,
15
        [EnumMember] ClientAuthentication
16
#else
17
      RequestToken,
18
        AccessToken,
19
        ProtectedResource,
20
        ClientAuthentication
21
#endif
22
    }
23
}