Added hammock project to debug streaming issues
[pithos-ms-client] / trunk / hammock / src / net35 / Hammock / Authentication / IWebCredentials.cs
1 using Hammock.Web;
2
3 namespace Hammock.Authentication
4 {
5     public interface IWebCredentials
6     {
7         WebQuery GetQueryFor(string url, 
8                              RestBase request, 
9                              IWebQueryInfo info, 
10                              WebMethod method,
11                              bool enableTrace);
12
13         WebQuery GetQueryFor(string url,
14                              WebParameterCollection parameters,
15                              IWebQueryInfo info,
16                              WebMethod method,
17                              bool enableTrace);
18     }
19 }