Пример #1
0
 public abstract byte[] Post(Uri postUri, PostEncodingTypes postEncodingType, PostTypes postType, IDictionary<string, string> parameters);
Пример #2
0
 public abstract byte[] Post(Uri postUri, PostEncodingTypes postEncodingType, PostTypes postType);
Пример #3
0
 public byte[] Post(Uri postUri, PostEncodingTypes postEncodingType, PostTypes postType, IDictionary<string, string> parameters)
 {
     Parameters = parameters;
     return Post(postUri, postEncodingType, postType);
 }
Пример #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);
 }
Пример #5
0
 public byte[] Post(Uri postUri, PostEncodingTypes postEncodingType, PostTypes postType)
 {
     PostType = postType;
     return Post(postUri, postEncodingType);
 }