Skip to content

Commit

Permalink
fix readme example
Browse files Browse the repository at this point in the history
  • Loading branch information
alec1o committed Nov 27, 2023
1 parent 71730a3 commit 554b564
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ $ dotnet build "netly/" -c Release -o "netly/bin/"
// get email from http form.
string email = request.Body.Form.GetString("email");
// get password from http from.
string email = request.Body.Form.GetString("email");
string password = request.Body.Form.GetString("password");
// get uploaded file from http form. (<form method="post" enctype="multipart/form-data">).
byte[] picture = request.Body.Form.GetBytes("upload");
});
Expand Down

0 comments on commit 554b564

Please sign in to comment.