Documentation: Adds additional note for GetContactedRegions method (#4042)

* Added small remark for GetContactedRegions method documentation

* Moved to remarks
This commit is contained in:
Rinat Minibaev 2023-08-18 10:12:46 -07:00 коммит произвёл GitHub
Родитель 48af69ecab
Коммит ce38cc1b22
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -80,6 +80,9 @@ namespace Microsoft.Azure.Cosmos
/// 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();
}
}