将Outlook附件流发布到rest api

时间:2015-05-06 09:46:45

标签: c# rest

我正在开发一个outlook加载项,我必须使用rest api上传mailitem附件。首先,我将附件保存到临时目录,并为该文件创建一个流读取器,如何发布此流,因为如果我不发布流,则会创建仅具有指定名称的空文件:

for (int i = 1; i <= this.Attachments.Count; i++)
                {
                    var fileName = this.Attachments[i].FileName;
                    Attachments[i].SaveAsFile(Path.GetTempPath() + fileName);
                    StreamReader stream = new StreamReader(Path.GetTempPath() + fileName);

                }

我必须做些什么来实现它,我需要一些帮助。干杯

0 个答案:

没有答案