Skip to content

Latest commit

 

History

History
41 lines (34 loc) · 1.07 KB

File metadata and controls

41 lines (34 loc) · 1.07 KB
description Automatically generated file. DO NOT MODIFY
// Code snippets are only available for the latest version. Current version is 5.x

// Dependencies
using Microsoft.Graph.Beta.Groups.Item.Threads.Item.Reply;
using Microsoft.Graph.Beta.Models;

var requestBody = new ReplyPostRequestBody
{
	Post = new Post
	{
		Body = new ItemBody
		{
			ContentType = BodyType.Text,
			Content = "I attached a reference to a file on OneDrive.",
		},
		Attachments = new List<Attachment>
		{
			new ReferenceAttachment
			{
				OdataType = "#microsoft.graph.referenceAttachment",
				Name = "Personal pictures",
				SourceUrl = "https://contoso.com/personal/mario_contoso_net/Documents/Pics",
				ProviderType = ReferenceAttachmentProvider.OneDriveConsumer,
				Permission = ReferenceAttachmentPermission.Edit,
				IsFolder = true,
			},
		},
	},
};

// To initialize your graphClient, see https://learn.microsoft.com/en-us/graph/sdks/create-client?from=snippets&tabs=csharp
await graphClient.Groups["{group-id}"].Threads["{conversationThread-id}"].Reply.PostAsync(requestBody);