Exemplo n.º 1
0
 public REST()
 {
     endpoint   = string.Empty;
     httpMethod = httpverb.GET;
 }
Exemplo n.º 2
0
 public RestClient()
 {
     endpoint   = string.Empty;
     httpmethod = httpverb.GET;
 }
Exemplo n.º 3
0
 public RestClient() //constructor class
 {
     endpoint   = string.Empty;
     httpmethod = httpverb.GET;
 }
Exemplo n.º 4
0
 //default constructor
 public RestApi()
 {
     endpoint = string.Empty;
     //shodan use only get http method in all search methods
     httpmethod = httpverb.GET;
 }
Exemplo n.º 5
0
 public RestClient_old()
 {
     endPoint   = "http://itildemo.servicedeskplus.com";
     httpMethod = httpverb.GET;
 }
Exemplo n.º 6
0
 public restClient()
 {
     //Creating Variables
     endPoint   = string.Empty;
     httpMethod = httpverb.GET;
 }