我正在尝试通过c#和vb.net控制台应用程序提交多部分表单,但是我如何看到它的实际外观?我在一些论坛上看到了您可以通过Wireshark看到它的外观。我需要将其与API文档进行匹配。任何帮助将不胜感激!
我知道它超级旧,但我想回答以防其他人需要它。
Dim EncodedContent As New MultipartFormDataContent
EncodedContent.Add(New StringContent("0"), "Hello World!")
Debug.Print(EncodedContent.ReadAsStringAsync().Result)'<Prints MultipartForm to console