var uri = URL_BASE + myuri
string.Format("providers/{0}/items?feed={1}&id={2}&type=cf", provider, feed, zipFileNoPath);
var webClient = new WebClient();
webClient.Credentials = new NetworkCredential(email, password);
webClient.Headers.Add("Accept", "*/*");
webClient.Headers.Add("Content-Type", "application/octet-stream");
webClient.UploadFileAsync(new Uri(uri), "POST", zipFile);
上記のコードの場合、フィドラーから監視すると、ヘッダーに 2 つの「Content-Type」が表示されました。1 つは Content-Type: multipart/form-data; 境界=---------------------8cf27396e080e0a、もう 1 つは Content-Type: application/octet-stream です。どちらが有効になりますか、ありがとう