一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

C#代码

时间:2008-01-12 编辑:简简单单 来源:一聚教程网

// 南京千里独行 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 < bytSend.Length )
{

热门栏目