コード例 #1
0
ファイル: IHttpPost.cs プロジェクト: T2BE/Common
 public abstract byte[] Post(Uri postUri, PostEncodingTypes postEncodingType, PostTypes postType, IDictionary<string, string> parameters);
コード例 #2
0
ファイル: IHttpPost.cs プロジェクト: T2BE/Common
 public abstract byte[] Post(Uri postUri, PostEncodingTypes postEncodingType, PostTypes postType);
コード例 #3
0
ファイル: HttpPost.cs プロジェクト: T2BE/Common
 public byte[] Post(Uri postUri, PostEncodingTypes postEncodingType, PostTypes postType, IDictionary<string, string> parameters)
 {
     Parameters = parameters;
     return Post(postUri, postEncodingType, postType);
 }
コード例 #4
0
ファイル: HttpPost.cs プロジェクト: T2BE/Common
 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
ファイル: HttpPost.cs プロジェクト: T2BE/Common
 public byte[] Post(Uri postUri, PostEncodingTypes postEncodingType, PostTypes postType)
 {
     PostType = postType;
     return Post(postUri, postEncodingType);
 }