0
我需要使用多部分/相關的ContentType。我這樣做:無法在RestSharp中設置多部分/相關的ContentType
RestRequest request = new RestRequest();
request.AddParameter("Content-Type", "multipart/related", ParameterType.HttpHeader);
但我總是得到
的multipart/form-data的
在HTTP請求
有沒有辦法迫使多/有關係嗎?
檢查這個答案http://stackoverflow.com/questions/25258659/how-to-set-the-content-type-header-for-a-restrequest – har