Describe the bug
According to the summary comment ContentBytes is "The base64-encoded contents of the file."
However the bytes do not appear to be base64 encoded, because if I try to decode them I get an error that it is not base64 encoded
Expected behavior
Probably the comment needs to be verified
How to reproduce
var attachment = await graphClient.Users[userId].MailFolders[mailFolderId].Messages[messageId].Attachments[attachmentId]
.GetAsync() as FileAttachment;
var bytes = attachment.ContentBytes;
var base64Chars = Encoding.UTF8.GetChars(attachment.ContentBytes);
var decodedBytes = Convert.FromBase64CharArray(base64Chars, 0, base64Chars.Length);
Throws an error
SDK Version
No response
Latest version known to work for scenario above?
No response
Known Workarounds
No response
Debug output
Click to expand log
```
</details>
### Configuration
_No response_
### Other information
_No response_