We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adfba8a commit 5d61febCopy full SHA for 5d61feb
1 file changed
ProjectTemplates/AspNetCore.WebApi/ReferenceProject/ReferenceProject/Controllers/FilesController.cs
@@ -11,6 +11,13 @@ namespace ReferenceProject.Controllers
11
[ApiController]
12
public class FilesController: ControllerBase
13
{
14
+ /// <summary>
15
+ /// Upload a file
16
+ /// </summary>
17
+ /// <remarks>
18
+ /// Play around with file size. Try to upload a file more 1048576 bytes length
19
+ /// </remarks>
20
+ /// <param name="file">A file to upload</param>
21
[HttpPost]
22
[Route("upload")]
23
[RequestSizeLimit(1048576)]
0 commit comments