var graphClient = new GraphServiceClient(requestAdapter); var requestBody = new ChatMessage { Body = new ItemBody { Content = "Hello World", }, }; var result = await graphClient.Teams["{team-id}"].Channels["{channel-id}"].Messages.PostAsync(requestBody);
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)