Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DirectConnector/AzureLogAnalyticsFunctions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public AzureLogAnalyticsFunctions(

/// <summary>
/// Lists Azure subscriptions available to the authenticated connection.
/// Demonstrates paginated enumeration via <c>await foreach</c> over <c>ConnectorPageable</c>.
/// Demonstrates paginated enumeration via <c>await foreach</c> over <c>AsyncPageable</c>.
/// </summary>
[Function("ListLogAnalyticsSubscriptions")]
public async Task<HttpResponseData> ListSubscriptionsAsync(
Expand Down
2 changes: 1 addition & 1 deletion DirectConnector/ConnectorFunctions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1040,7 +1040,7 @@ await errorResponse
/// </summary>
/// <remarks>
/// Demonstrates <see cref="IAsyncEnumerable{T}"/> pagination: <c>GetMessagesFromChannelAsync</c>
/// returns a <c>ConnectorPageable</c> that follows <c>@odata.nextLink</c> automatically.
/// returns a <c>AsyncPageable</c> that follows <c>@odata.nextLink</c> automatically.
/// The caller uses <c>await foreach</c> and never sees pagination details.
/// </remarks>
/// <param name="request">The HTTP request with teamId and channelId query parameters.</param>
Expand Down
Loading