Added context around HEAD requests (#8928)
parent
d2fc112258
commit
07b06e9859
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue