Added hammock project to debug streaming issues
[pithos-ms-client] / trunk / hammock / src / net35 / Hammock / Authentication / OAuth / OAuthSignatureMethod.cs
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 OAuthSignatureMethod
10     {
11 #if !SILVERLIGHT && !Smartphone && !ClientProfiles && !NET20 && !MonoTouch && !NETCF
12         [EnumMember] HmacSha1,
13         [EnumMember] PlainText,
14         [EnumMember] RsaSha1
15 #else
16       HmacSha1,
17         PlainText,
18         RsaSha1
19 #endif
20     }
21 }