Skip to content

Instantly share code, notes, and snippets.

@maisarissi
Last active February 8, 2023 20:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maisarissi/d662d4579ac5661216b869a1c6fbd403 to your computer and use it in GitHub Desktop.
Save maisarissi/d662d4579ac5661216b869a1c6fbd403 to your computer and use it in GitHub Desktop.
msgraph-dotnet-v5-rc-backing-store
//get the object
var @event = await graphServiceClient
    .Me.Events["event-id"]
    .GetAsync();
//the backing store will keep track that the property change and send the updated value.
@event.Recurrence = null;// set to null
//update the object
await graphServiceClient.Me.Events["event-id"]
    .PatchAsync(@event);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment