To conect to a third party service I need to make a Https Post. One of the requisites set is to sent a custom content type.
I'm using WebClient, but I can't find how to set it. I've tried making a new class and overriding the CreateRequest Method, but that make request crash.
Is there any way to do that without having to rewrite CopyHeadersTo method?
Thanks in advance
EDIT CopyHeaderTo is a method I've seen using .NET Reflector. It's invoqued from GetWebRequest and sets all Request Headers, including Content-Type, from private properties.