Esempio n. 1
0
 public DocumentPostRequestor(string url, PostProperties properties, List <KeyValuePair <string, string> > postParams)
 {
     this.url        = url;
     this.properties = properties ?? new PostProperties();
     this.postParams = postParams ?? new List <KeyValuePair <string, string> >();
     validate();
 }
Esempio n. 2
0
 public WebPostRequestor(PostProperties properties)
 {
     this._properties = properties;
 }