RestClient.Execute does not exist
See original GitHub issueUsing the example on the wiki:
public T Execute<T>(RestRequest request) where T : new() { var client = new RestClient(); client.BaseUrl = BaseUrl; client.Authenticator = new HttpBasicAuthenticator(_accountSid, _secretKey); request.AddParameter("AccountSid", _accountSid, ParameterType.UrlSegment); // used on every request var response = client.Execute<T>(request); return response.Data; }
I get the following error:
Error 1 ‘RestSharp.RestClient’ does not contain a definition for ‘Execute’ and no extension method ‘Execute’ accepting a first argument of type ‘RestSharp.RestClient’ could be found (are you missing a using directive or an assembly reference?)
Using 101.3 dll on Windows Phone 7.
Issue Analytics
- State:
- Created 12 years ago
- Comments:9 (4 by maintainers)
@Programn00b I don’t control that website and I tried really hard to find out who owns the domain and where the source for the website is located but found nothing. So, I probably need to get a new domain and create a new website.
@alexeyzimarev thanks for replying, now I know that my problem isn’t just because of my code 😃 👍