File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ All validation attributes should be used over IFormFile interface and can be use
26
26
27
27
``` c#
28
28
[HttpPost (" filesUpload" )]
29
- public IActionResult UploadFiles ([AllowImageOnly ] IFormFile imageFile , [AllowArchiveOnly ] IFormFilarchiveFile )
29
+ public IActionResult UploadFiles ([AllowImageOnly ] IFormFile imageFile , [AllowArchiveOnly ] IFormFile archiveFile )
30
30
{
31
31
// Some cool stuf here ...
32
32
}
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ With web package you will recive access to our validation attributes that will g
71
71
72
72
``` c#
73
73
[HttpPost (" filesUpload" )]
74
- public IActionResult UploadFiles ([AllowImageOnly ] IFormFile imageFile , [AllowArchiveOnly ] IFormFilarchiveFile )
74
+ public IActionResult UploadFiles ([AllowImageOnly ] IFormFile imageFile , [AllowArchiveOnly ] IFormFile archiveFile )
75
75
{
76
76
// Some cool stuf here ...
77
77
}
You can’t perform that action at this time.
0 commit comments