我在 C# 中使用 Graph SDK 来阅读邮件消息,我能够做到这一点。我想要我的邮件消息的 Mime 内容。我们如何使用 SDK 在我的请求中传递 $value。
示例代码:
mails = await graphserviceclient
.Me
.Messages
.Request()
.Top(2)
.GetAsync();
Run Code Online (Sandbox Code Playgroud)
请让我知道我们如何在使用 graphserviceclient 的 C# 代码中传递 $value。
c# microsoft-graph-sdks microsoft-graph-mail microsoft-graph-api