From 9f43027842d437367ed3aeb6bbcfc8db508cdfe7 Mon Sep 17 00:00:00 2001 From: philipthomas Date: Fri, 20 Sep 2024 13:16:30 -0400 Subject: [PATCH] fix to show return ItemResponse --- Microsoft.Azure.Cosmos/src/Resource/Container/Container.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Microsoft.Azure.Cosmos/src/Resource/Container/Container.cs b/Microsoft.Azure.Cosmos/src/Resource/Container/Container.cs index 4aeef068ff..b36f20e30a 100644 --- a/Microsoft.Azure.Cosmos/src/Resource/Container/Container.cs +++ b/Microsoft.Azure.Cosmos/src/Resource/Container/Container.cs @@ -443,7 +443,7 @@ public abstract Task ReadItemStreamAsync( /// public string status {get; set;} /// } /// - /// ToDoActivity toDoActivity = await this.container.ReadItemAsync("id", new PartitionKey("partitionKey")); + /// ItemResponse toDoActivity = await this.container.ReadItemAsync("id", new PartitionKey("partitionKey")); /// /// ]]> /// @@ -740,7 +740,7 @@ public abstract Task> ReadManyItemsAsync( /// public int frequency {get; set;} /// } /// - /// ToDoActivity toDoActivity = await this.container.ReadItemAsync("id", new PartitionKey("partitionKey")); + /// ItemResponse toDoActivity = await this.container.ReadItemAsync("id", new PartitionKey("partitionKey")); /// /* toDoActivity = { /// "id" : "someId", /// "status" : "someStatusPK",