Skip to content

Commit

Permalink
Fix RestClient for SL, WP from previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
ayoung committed Aug 30, 2012
1 parent fff871d commit 4bab40a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions RestSharp/IRestClient.cs
Expand Up @@ -112,9 +112,11 @@ public interface IRestClient
/// <param name="httpMethod">The HTTP method to execute</param>
RestRequestAsyncHandle ExecuteAsyncPost<T>(IRestRequest request, Action<IRestResponse<T>, RestRequestAsyncHandle> callback, string httpMethod);

#if FRAMEWORK
IRestResponse ExecuteAsGet(IRestRequest request, string httpMethod);
IRestResponse ExecuteAsPost(IRestRequest request, string httpMethod);
IRestResponse<T> ExecuteAsGet<T>(IRestRequest request, string httpMethod) where T : new();
IRestResponse<T> ExecuteAsPost<T>(IRestRequest request, string httpMethod) where T : new();
#endif
}
}

0 comments on commit 4bab40a

Please sign in to comment.