Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 windows phone 8 中使用后台传输方法上传音频文件。我必须添加上传请求属性才能成功将文件上传到服务器。是否可以使用后台传输请求的“标签”或“标题”属性?
您可以在
`BackgroundTransferRequest.Headers Property`
它基本上是一个Dictionary<string, string>
Dictionary<string, string>
所以你可以.Add(key, value)做到
.Add(key, value)
MSDN 链接
小心,看起来有一些标题键是保留的。