Example #1
0
 /// <summary>
 /// Constructor
 /// </summary>
 public RestApiUtility(AuthenticateWebClient clientAuthenticator)
 {
     Serializer = new JsonSerialization();
     restHttp = new RestHttpUtility(clientAuthenticator);
 }
Example #2
0
 /// <summary>
 /// Constructor
 /// </summary>
 internal RestHttpUtility(AuthenticateWebClient clientAuthenticator)
 {
     this.clientAuthenticator = clientAuthenticator;
 }
Example #3
0
 /// <summary>
 /// Constructor
 /// </summary>
 public JsonWebClient(CookieContainer cookies, AuthenticateWebClient clientAuthenticator)
 {
     Cookies = cookies;
     this.clientAuthenticator = clientAuthenticator;
 }