Код: Выделить всё
var queryOptions = new List() { new QueryOption("$count", "true") };
var roomUrl = graphClient.Places.AppendSegmentToRequestUrl("microsoft.graph.room");
var response = await new GraphServicePlacesCollectionRequest(roomUrl, graphClient, queryOptions).Top(100).GetAsync();
var nextPageUrl = response.AdditionalData.TryGetValue("@odata.nextLink", out object nextLink) ? nextLink.ToString() : string.Empty;
Подробнее здесь: https://stackoverflow.com/questions/738 ... soft-graph
Мобильная версия