msgraph-sdk-dotnet icon indicating copy to clipboard operation
msgraph-sdk-dotnet copied to clipboard

Microsoft Graph Client Library for .NET!

Results 212 msgraph-sdk-dotnet issues
Sort by recently updated
recently updated
newest added

**Describe the bug** When calling GET https://graph.microsoft.com/v1.0/me/drive/items/{driveId}/workbook/worksheets/{driveId}/range(address='A1:XX1') The response contains cell values in `text` property When doing the same in v5 ``` var workbookRange = await m_client.Drives["Me"].Items[{driveId}] .Workbook.Worksheets[{driveId}] .RangeWithAddress("A1:XX1") .GetAsync();...

Status: Under investigation
v5

Hi, I am responsible for development of an Azure Function that accesses and updates email data for various user mailboxes within an organization. The Azure Function, acting as a service...

Question: SDK
Needs: Attention :wave:
Question: API

**Describe the bug** In the current version 5.9.0 users can get a set of one or more workbook cells. There is no way to update/insert/delete/merge/unmerge/clear range and get/update range format....

Bug
Bug: metadata
OpenApi

**Describe the bug** Microsoft Graph API has an ability to use $expand funcitonality for your own calendarView: ```csharp var response = await graphClient.Me.CalendarView .GetAsync( r => { r.QueryParameters.StartDateTime = s.ToString();...

Bug: metadata
OpenApi

Consider removing Moq due to the following concerns. - [Devlooped.SponsorLink must not perform I/O outside of compiler APIs ](https://github.com/devlooped/SponsorLink/issues/10) - [Harvesting user email addresses without any form of consent is...

Request: enhancement

I recently upgraded from 4.18.0 to any of the versions 5.x.x. I have been getting Error CS8103 while building my project. I wanted to be sure of the problem so...

Status: Needs investigation

Based on the [Directory role - List members](https://learn.microsoft.com/en-us/graph/api/directoryrole-list-members?view=graph-rest-1.0&tabs=http#example-2-get-the-members-of-a-directory-role-using-roletemplateid) article, there is a possibility to query directory role members using `roleTemplateId`: ```curl GET https://graph.microsoft.com/v1.0/directoryRoles(roleTemplateId='43a63cc2-582b-4d81-a79d-1591f91d5558')/members ``` However, Graph SDK only allows querying...

Bug: metadata
OpenApi

Please add support for "Delete" on the photo endpoints. [https://learn.microsoft.com/en-us/graph/api/profilephoto-delete?view=graph-rest-1.0&tabs=http](https://learn.microsoft.com/en-us/graph/api/profilephoto-delete?view=graph-rest-1.0&tabs=http) Support was added on November 2nd [https://developer.microsoft.com/en-us/graph/changelog/?search=profilephoto](https://developer.microsoft.com/en-us/graph/changelog/?search=profilephoto)

Bug: metadata
OpenApi

**Describe the bug** [This documentation](https://learn.microsoft.com/en-us/graph/api/message-createreply?view=graph-rest-1.0&tabs=csharp) says there are 2 ways to create a draft reply for an existing outlook message. First way is probably working, but in v5 there is...

Bug
Bug: metadata
OpenApi

**Is your feature request related to a problem? Please describe.** I'm always frustrated with the poor upload speed of OneDrive when using the ```LargeFileUploadTask``` as explained in the [MS Documentation](https://learn.microsoft.com/en-us/graph/sdks/large-file-upload?context=graph%2Fapi%2F1.0&view=graph-rest-1.0&tabs=csharp)....

Request: enhancement