Ejemplo n.º 1
0
 public Class2(string endpoint, EnumHttpVerb method)
 {
     EndPoint    = endpoint;
     Method      = method;
     ContentType = "application/json";
     PostData    = "";
 }
Ejemplo n.º 2
0
 public RestClient(string endpoint, EnumHttpVerb method, string postData)
 {
     EndPoint    = endpoint;
     Method      = method;
     ContentType = "application/json";
     PostData    = postData;
 }
Ejemplo n.º 3
0
 public RestFulClientHelper(string endpoint, EnumHttpVerb method)
 {
     EndPoint    = endpoint;
     Method      = method;
     ContentType = "application/json";
     PostData    = "";
 }