Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the replacement of FormDataCollection in Asp.Net core?

Tags:

asp.net-core

I am trying to use FormDataCOllection in Asp.Net core web api project. As per the documentation it is not there in .net core.

How can I still use it? Or What has replaced it?

like image 309
ViBi Avatar asked Oct 16 '25 09:10

ViBi


1 Answers

You can use the Form property of HttpContext.Request which will return an IFormCollection instance.

like image 167
Henk Mollema Avatar answered Oct 19 '25 02:10

Henk Mollema