C# programmatically add webcal:link in Outlook “internet calendar subscription”?

759 Views Asked by At

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.

1

There are 1 best solutions below

0
On BEST ANSWER

using Outlook = Microsoft.Office.Interop.Outlook;

Outlook.Application ouApplication = new Outlook.Application();
Outlook.Folder newFolder = ouApplication.GetNamespace("MAPI").OpenSharedFolder("webcalURL") as Outlook.Folder;