Microsoft Technologies based on the .NET software framework. Miscellaneous topics that do not fit into specific categories.
Here i have solution with 5.28:
https://github.com/microsoftgraph/msgraph-sdk-dotnet/issues/2144
And this worked for me, my problem was with reading the stream (old method doesn't work anymore).
var res = await graphServiceClient.Me.Messages["{message-id}"].Content.GetAsync();
var data = new StreamReader(res).ReadToEnd();