i found that the result $request.ContentType is difference by using char[] and String.
$request = [System.Net.HttpWebRequest].create($URL)
$request.ContentType = [char[]] "application/x-www-url-formurlened" $request.ContentType = "application/x-www-url-formurlened"
What is the different in the actual output to the server side, if I made a request like that using char[] and string?
it is so confusing...i guess it should be the same
thanks