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