You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, parsePostForm is private. It is called only from ParseForm and one cannot call manually. This means that if one wants to call it on a non-standard HTTP method (not POST, PUT, PATCH) you have to temporary change method, then call ParseForm and then return it back. Or if you want to parse just post form and ignore any query string parameters. Currently you cannot ignore string parameters (you have to set RawQueryString to "" currently). In my case, I want to parse query string and post form separately because I want o log parsed query string but not post form (the latter might have sensitive data).
Currently,
parsePostForm
is private. It is called only fromParseForm
and one cannot call manually. This means that if one wants to call it on a non-standard HTTP method (notPOST
,PUT
,PATCH
) you have to temporary change method, then callParseForm
and then return it back. Or if you want to parse just post form and ignore any query string parameters. Currently you cannot ignore string parameters (you have to setRawQueryString
to""
currently). In my case, I want to parse query string and post form separately because I want o log parsed query string but not post form (the latter might have sensitive data).I think code could be something like:
The text was updated successfully, but these errors were encountered: