Skip to content

Commit 9c1f96a

Browse files
Incorrect capitalisation (#18452)
1 parent f562564 commit 9c1f96a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

aspnetcore/blazor/call-web-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ JSON helper methods send requests to a URI (a web API in the following examples)
113113
Calls to `PostAsJsonAsync` return an <xref:System.Net.Http.HttpResponseMessage>. To deserialize the JSON content from the response message, use the `ReadFromJsonAsync<T>` extension method:
114114

115115
```csharp
116-
var content = response.content.ReadFromJsonAsync<WeatherForecast>();
116+
var content = response.Content.ReadFromJsonAsync<WeatherForecast>();
117117
```
118118

119119
* `PutAsJsonAsync` &ndash; Sends an HTTP PUT request, including JSON-encoded content.

0 commit comments

Comments
 (0)