Example #1
0
 public abstract byte[] Post(Uri postUri, PostEncodingTypes postEncodingType, PostTypes postType, IDictionary<string, string> parameters);
Example #2
0
 public abstract byte[] Post(Uri postUri, PostEncodingTypes postEncodingType, PostTypes postType);
Example #3
0
 public byte[] Post(Uri postUri, PostEncodingTypes postEncodingType, PostTypes postType, IDictionary<string, string> parameters)
 {
     Parameters = parameters;
     return Post(postUri, postEncodingType, postType);
 }
Example #4
0
 public byte[] Post(Uri postUri, PostEncodingTypes postEncodingType, PostTypes postType, IDictionary<string, string> parameters, Encoding encoding)
 {
     Encoding = encoding;
     return Post(postUri, postEncodingType, postType, parameters);
 }
Example #5
0
 public byte[] Post(Uri postUri, PostEncodingTypes postEncodingType, PostTypes postType)
 {
     PostType = postType;
     return Post(postUri, postEncodingType);
 }