Added context around HEAD requests (#8928)

pull/8934/head
Dave Brock 2018-10-09 11:41:44 -05:00 committed by Luke Latham
parent d2fc112258
commit 07b06e9859
1 changed files with 3 additions and 1 deletions

View File

@ -242,7 +242,9 @@ See [Model validation](xref:mvc/models/validation) for more information.
## Manage HEAD requests with the OnGet handler
Ordinarily, a HEAD handler is created and called for HEAD requests:
HEAD requests allow you to retrieve the headers for a specific resource. Unlike GET requests, HEAD requests don't return a response body.
Ordinarily, a HEAD handler is created and called for HEAD requests:
```csharp
public void OnHead()