diff --git a/DirectConnector/AzureLogAnalyticsFunctions.cs b/DirectConnector/AzureLogAnalyticsFunctions.cs index 04f3492..973ced5 100644 --- a/DirectConnector/AzureLogAnalyticsFunctions.cs +++ b/DirectConnector/AzureLogAnalyticsFunctions.cs @@ -30,7 +30,7 @@ public AzureLogAnalyticsFunctions( /// /// Lists Azure subscriptions available to the authenticated connection. - /// Demonstrates paginated enumeration via await foreach over ConnectorPageable. + /// Demonstrates paginated enumeration via await foreach over AsyncPageable. /// [Function("ListLogAnalyticsSubscriptions")] public async Task ListSubscriptionsAsync( diff --git a/DirectConnector/ConnectorFunctions.cs b/DirectConnector/ConnectorFunctions.cs index 81b52a1..bc67ab0 100644 --- a/DirectConnector/ConnectorFunctions.cs +++ b/DirectConnector/ConnectorFunctions.cs @@ -1040,7 +1040,7 @@ await errorResponse /// /// /// Demonstrates pagination: GetMessagesFromChannelAsync - /// returns a ConnectorPageable that follows @odata.nextLink automatically. + /// returns a AsyncPageable that follows @odata.nextLink automatically. /// The caller uses await foreach and never sees pagination details. /// /// The HTTP request with teamId and channelId query parameters.