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

Hi, I am trying to update Graph from `4.54.0` to `5.8.0`. In previous version I was able to setup an enterprise application with SAML SSO that would encrypt assertion with...

Needs: Attention :wave:
Status: Needs investigation

Trying to migrate from SDK v4.35 to 5.8. We have a multi-tenant app with consent granted in other tenancies. Authentication code is ` var scopes = new[] { "User.Read", "Mail.ReadWrite",...

Needs: Attention :wave:

**Describe the bug** In v4 the following request was allowed (i.e. it was not a bad request):- ```csharp // v4 - this works await _graphClient.Groups[targetGroup.Id].Members[user.Id].Request().GetAsync(); ``` If this request succeeded,...

Bug: metadata
OpenApi
type:bug

**Describe the bug** [The call](https://github.com/microsoftgraph/msgraph-sdk-dotnet/blob/e3c134418835035e2e967279c286bb7b8a037f91/src/Microsoft.Graph/Generated/Users/Item/UserItemRequestBuilder.cs#L426) of `PatchAsync()` claims to return a `Task`, but this return value is always `null` and according to [the documentation](https://learn.microsoft.com/en-us/graph/api/user-update?view=graph-rest-1.0&tabs=http#response-2) it won't return anything. **Client version**...

Bug: metadata
OpenApi

**Is your feature request related to a problem? Please describe.** While upgrading vom v4 to v5 I wrote the following code to add a member to a group: ```csharp await...

Request: enhancement

To create a new table I can call ``` POST https://graph.microsoft.com/v1.0/me/drive/items/{id}/workbook/tables/add Content-type: application/json { "address": "Sheet1!A1:D5", "hasHeaders": true } ``` In code I can call `await _graphServiceClient.Drives[driveId].Items[itemId].Workbook.Tables.PostAsync(WorkbookTable);` but `WorkbookTable` doesn't...

Bug: metadata
Kiota
OpenApi
v5

Been tryíng to save ItemAttachments as a eml or msg file but can't find a way to do that. Would be great to get the ContentBytes as for a FileAttachment....

Bug: metadata
OpenApi

**Describe the bug** When trying to patch the `EducationAssignment.AssignDateTime` via the graph service client, the value won't be set. **To Reproduce** ```csharp [Fact] public void EducationAssignmentSerializesAssignDateTime() { var tokenCredentials =...

Bug: metadata
OpenApi

**Describe the bug** Unfortunately there is no official code example or documentation available on how to use the SDK to copy a `DriveItem` and check the current process of copying....

Bug

Description: we are unable to Read bulk emails and we are getting the error below. Reference Document Links: https://learn.microsoft.com/en-us/training/modules/optimize-network-traffic/ Installed Packages are: NuGet\Install-Package Microsoft.Identity.Client -Version 4.49.1 NuGet\Install-Package Microsoft.Graph -Version 4.50.0...

Needs: Attention :wave: