Statistics
| Branch: | Revision:

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

History | View | Annotate | Download (590 Bytes)

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
}