回复 3楼bj_zm的帖子
C1Uploader的AddFile方法有三个重载方法:
1.Public method AddFile(FileInfo)
Adds a file to the Files collection that will be sent to the server when the BeginUploadFiles() method is invoked.
2.Public method AddFile(String)
Adds a file to the Files collection that will be sent to the server when the BeginUploadFiles() method is invoked.
3.Public method AddFile(String, Stream)
Adds a Stream to the Files collection that will be sent to the server when the BeginUploadFiles() method is invoked.
你可以使用AddFile(string, stream)添加stream到Files collection。
文档如下:
http://helpcentral.componentone. ... ploader_AddFile.htm |