We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 00b8380 + 4fd113f commit c1dadb0Copy full SHA for c1dadb0
articles/cosmos-db/change-feed-pull-model.md
@@ -6,7 +6,7 @@ ms.author: tisande
6
ms.service: cosmos-db
7
ms.devlang: dotnet
8
ms.topic: conceptual
9
-ms.date: 05/06/2020
+ms.date: 05/10/2020
10
ms.reviewer: sngun
11
---
12
@@ -132,9 +132,9 @@ string continuation = null;
132
while (iterator.HasMoreResults)
133
{
134
FeedResponse<User> users = await iterator.ReadNextAsync();
135
- continuation = orders.ContinuationToken;
+ continuation = users.ContinuationToken;
136
137
- foreach (User user in Users)
+ foreach (User user in users)
138
139
Console.WriteLine($"Detected change for user with id {user.id}");
140
}
0 commit comments