我有两个问题,我应该如何在C#中实现具有多种内容类型的Http请求,并且请求还需要包含xmk文件的内容。请求应该是这样的:
Content-Type: multipart/related; boundary=----xxxxxxxxxxxxxxxxxxx;
//some content here
Content-Type: application/xml
//some content here
//The content of XML file
Content-Type: text/plain
//some content here
如何在C#中的单个HTTP Post Request中实现这3种内容类型?非常感谢你。