Ejemplo n.º 1
0
    public string GetResponseAsString(IHttpMethod method)
    {
        var myClient = _factory.CreateHttpClient();

        myClient.ExecuteMethod(method);
        return(method.ResponseBodyAsStream.ToString());
    }
Ejemplo n.º 2
0
 public void ExecuteMethod(IHttpMethod method)
 {
 }
Ejemplo n.º 3
0
 public HomeController(IHttpMethod _httpMethod)
 {
     httpMethod = _httpMethod;
 }