最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
C#代码
时间:2022-07-02 11:12:32 编辑:袖梨 来源:一聚教程网
// 南京千里独行 2005-3-17
///
/// 进度信息处理委托
///
/// 已经完成的步骤数
/// 总的步骤数
public delegate void ProgressHandler( int CompletedStep , int TotalStep );
///
/// 通用函数集合
///
public class YYFCommon
{
///
/// 向指定URL使用POST方法发送数据的例程,本函数不进行错误处理
///
/// URL字符串
/// 要发送的二进制数据
/// 发送数据时的进度处理
/// 接受数据时的进度处理
///接受到的二进制数据
public static byte[] HttpPostData(
string strURL ,
byte[] bytSend ,
ProgressHandler SendProgress ,
ProgressHandler AcceptProgress )
{
// 发送数据
System.Net.HttpWebRequest myReq =(System.Net.HttpWebRequest) System.Net.WebRequest.Create( strURL );
myReq.Method = "POST" ;
System.IO.Stream myStream = myReq.GetRequestStream();
int iCount = 0 ;
if( SendProgress != null)
SendProgress( 0 , bytSend.Length );
while( iCount {
///
/// 进度信息处理委托
///
/// 已经完成的步骤数
/// 总的步骤数
public delegate void ProgressHandler( int CompletedStep , int TotalStep );
///
/// 通用函数集合
///
public class YYFCommon
{
///
/// 向指定URL使用POST方法发送数据的例程,本函数不进行错误处理
///
/// URL字符串
/// 要发送的二进制数据
/// 发送数据时的进度处理
/// 接受数据时的进度处理
///
public static byte[] HttpPostData(
string strURL ,
byte[] bytSend ,
ProgressHandler SendProgress ,
ProgressHandler AcceptProgress )
{
// 发送数据
System.Net.HttpWebRequest myReq =(System.Net.HttpWebRequest) System.Net.WebRequest.Create( strURL );
myReq.Method = "POST" ;
System.IO.Stream myStream = myReq.GetRequestStream();
int iCount = 0 ;
if( SendProgress != null)
SendProgress( 0 , bytSend.Length );
while( iCount {
相关文章
- 逆战未来暗黑天使角色怎么样 12-23
- 知乎网页版入口在哪?一键直达知乎官网 12-23
- 喜鹊儿网页版登录入口-官方喜鹊儿网页版登录网址 12-23
- 星球重启在哪熔炼 熔炼位置分享 12-23
- 星球重启蚁窝任务过法详解 蚁窝任务怎么做 12-23
- yandex搜索入口PC手机通用版-yandex官方引擎直达通道 12-23