See POST Multipart Form Data Request
Asked Answered
L

1

6

I'm trying to submit a multipart form through a C# and a VB.NET console application, but how do I see what it actually looks like? I've seen on some forums that you can see what it looks like through WireShark. I need to match it with the API documentation. Any help would be appreciated!

Lindstrom answered 6/5, 2017 at 21:36 Comment(1)
Try Telerik fiddler it is much simpler than WIreShark.Antlion
B
0

I know it's super old but I wanted to answer in case someone else needs it.

        Dim EncodedContent As New MultipartFormDataContent
        EncodedContent.Add(New StringContent("0"), "Hello World!")
        Debug.Print(EncodedContent.ReadAsStringAsync().Result)'<Prints MultipartForm to console
Beecham answered 18/6, 2019 at 19:39 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.