Microsoft Graph API を使用して、公開されているカレンダーの URL にアクセスする必要がある (API を使用してカレンダーを共有したい) という要件があります。しかし、GraphServiceClient を使用すると利用できないようです。私が達成しようとしているのは
var cal = await graphClient...<anything>....Calendar.Request(options).GetAsync();
if(cal.CanShare.HasValue && cal.CanShare.Value)
{
// get the published URL of the calendar here
}