Ejemplo n.º 1
0
 internal Request1C(string httpMethod, string method, string content, Cred1C cred1C)
 {
     _credentials1C = cred1C.GetCredentials();
     _httpMethod    = new HttpMethod(httpMethod);
     _uri           = new Uri($"{_credentials1C.uri}{method}");
     _content       = new StringContent(content);
     this.content   = content;
 }
Ejemplo n.º 2
0
 internal Request1C(string httpMethod, string method, Cred1C cred1C)
 {
     _credentials1C = cred1C.GetCredentials();
     _httpMethod    = new HttpMethod(httpMethod);
     _uri           = new Uri($"{_credentials1C.uri}{method}");
 }