You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/durable/durable-functions-dotnet-entities.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -226,7 +226,7 @@ public static async Task<HttpResponseMessage> DeleteCounter(
226
226
227
227
### Example: client reads entity state
228
228
229
-
The following Azure Http Function implements a GET operation using REST conventions. It reads the current state of the counter entity whose key is passed in the URL path.
229
+
The following Azure HTTP Function implements a GET operation using REST conventions. It reads the current state of the counter entity whose key is passed in the URL path.
@@ -266,7 +266,7 @@ public static async Task<int> Run(
266
266
::: zone pivot="isolated"
267
267
### Example: client signals entity
268
268
269
-
The following Azure Http Function implements a DELETE operation using REST conventions. It sends a delete signal to the counter entity whose key is passed in the URL path.
269
+
The following Azure HTTP Function implements a DELETE operation using REST conventions. It sends a delete signal to the counter entity whose key is passed in the URL path.
270
270
271
271
```csharp
272
272
[Function("DeleteCounter")]
@@ -282,7 +282,7 @@ public static async Task<HttpResponseData> DeleteCounter(
282
282
283
283
### Example: client reads entity state
284
284
285
-
The following Azure Http Function implements a GET operation using REST conventions. It reads the current state of the counter entity whose key is passed in the URL path.
285
+
The following Azure HTTP Function implements a GET operation using REST conventions. It reads the current state of the counter entity whose key is passed in the URL path.
0 commit comments