gpt4 book ai didi

silverlight - Silverlight 文件上传后的服务器响应/回调

转载 作者:行者123 更新时间:2023-12-02 00:41:00 25 4
gpt4 key购买 nike

好吧,首先, unicorn 头像很搞笑。说真的,我以为我的账户被盗了。愚人节快乐。

现在我正在通过 Silverlight 将文件上传到服务器。通知 Silverlight 文件已上传的最佳方式是什么?甚至可能会返回其他信息,例如成功/失败等。

我遵循了一个简单的教程 here对于我的文件上传逻辑

最佳答案

首先重写 UploadFile 函数如下:-

    private void UploadFile(string fileName, Stream data, Action<Exception> callback)
{
UriBuilder ub = new UriBuilder("http://localhost:3840/receiver.ashx");
ub.Query = string.Format("filename={0}", fileName);

WebClient c = new WebClient();
c.OpenWriteCompleted += (sender, e) =>
{
try
{
PushData(data, e.Result);
e.Result.Close();
data.Close(); // This blocks until the upload completes
callback(null);
}
catch (Exception er)
{
callback(er);
}
};
c.OpenWriteAsync(ub.Uri);
}

现在你可以像这样使用这个函数:-

   Stream data = new fi.OpenRead();
try
{
FileUpload(fi.Name, data, (err) =>
{
// Note if you want to fiddle with the UI use dispatcher Invoke here.
if (err == null)
{
// Success
}
else
{
// Fail do something with the err to disply why
}
});

}
catch
{
data.Dispose();
}

关于silverlight - Silverlight 文件上传后的服务器响应/回调,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2560763/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com