Skip to content

Commit

Permalink
Documentation: Adds additional note for GetContactedRegions method (#…
Browse files Browse the repository at this point in the history
…4042)

* Added small remark for GetContactedRegions method documentation

* Moved to remarks
  • Loading branch information
rinatmini authored Aug 18, 2023
1 parent 48af69e commit ce38cc1
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Microsoft.Azure.Cosmos/src/Diagnostics/CosmosDiagnostics.cs
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ public virtual int GetFailedRequestCount()
/// Gets the list of all regions that were contacted for a request
/// </summary>
/// <returns>The list of tuples containing the Region name and the URI</returns>
/// <remarks>
/// The returned list contains unique regions and doesn't guarantee ordering of the regions contacted from the first to the last
/// </remarks>
public abstract IReadOnlyList<(string regionName, Uri uri)> GetContactedRegions();
}
}

0 comments on commit ce38cc1

Please sign in to comment.