14

I need my .NET application to access content from a variety of CalDAV servers. I have been looking for a good .NET CalDAV client library for a while now, but have been unable to find anything that suits my needs. Does such a library even exist, or is it something that I will need to write from scratch? I'm looking for something like on the iPhone where only a server address, username, and password are required.

Mac Attack
  • 952
  • 10
  • 21
  • The client library DDay.iCal states it supports RFC 5545 but according to [this answer](http://stackoverflow.com/questions/1809534/creating-a-caldav-service-with-net) it may also support [CalDAV RFC4791 - Calendaring Extensions to WebDAV](http://tools.ietf.org/html/rfc4791). But AFAICT based on the documentation it provides no methods to connect to a CalDav Server. – surfmuggle Mar 09 '15 at 10:06
  • If anyone is looking for a [java implementation he might find it in this answer](http://stackoverflow.com/questions/671120/is-there-a-java-caldav-api) – surfmuggle Mar 09 '15 at 10:15
  • @threeFourOneSixOneThree: DDay.iCal is a library to read and write iCalendar files, not to do the DAV. – Stefan Steiger Aug 24 '15 at 10:07

1 Answers1

-2

You can check this url. i hope this library helps you

As requested: This Client Library is provided for convenience to allow CardDAV/CalDAV connectivity within Microsoft Visual Studio projects. It is an abstraction Library that provides simple CalDAV / CardDAV connectivity.

The library also includes a primitive interface for parsing Calendar and Contact properties; although this is provided as a stub only (an implementation would involve sourcing a comprehensive parser of VCALENDAR and VCARDs).

Note: this is the license component for enterprise or if using for business purpose

Further details can be found @ http://www.arpdev.com/CalDAV_CardDAV_library.aspx

Avinash Jain
  • 7,200
  • 2
  • 26
  • 40