0

I know how to add task programmatically into the outlook

I am trying to add "webcal: link" programmatically into the outlook. But not getting any idea, it is possible to add "webcal: link" into the outlook for calendar sync.

Community
  • 1
  • 1
Ankur Tripathi
  • 671
  • 9
  • 35

1 Answers1

0

using Outlook = Microsoft.Office.Interop.Outlook;

Outlook.Application ouApplication = new Outlook.Application();
Outlook.Folder newFolder = ouApplication.GetNamespace("MAPI").OpenSharedFolder("webcalURL") as Outlook.Folder;
Ankur Tripathi
  • 671
  • 9
  • 35