horaios.de.CalDav 4.7.6.1304

Prefix Reserved
dotnet add package horaios.de.CalDav --version 4.7.6.1304                
NuGet\Install-Package horaios.de.CalDav -Version 4.7.6.1304                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="horaios.de.CalDav" Version="4.7.6.1304" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add horaios.de.CalDav --version 4.7.6.1304                
#r "nuget: horaios.de.CalDav, 4.7.6.1304"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install horaios.de.CalDav as a Cake Addin
#addin nuget:?package=horaios.de.CalDav&version=4.7.6.1304

// Install horaios.de.CalDav as a Cake Tool
#tool nuget:?package=horaios.de.CalDav&version=4.7.6.1304                

de.horaios.CalDav.Objects

de.horaios.CalDav.Objects makes it super very easy to create events and add them to a CalDav calendar like Baïkal (Baikal).

Example

var CalendarUri = "https://horaios.team/baikal/dav.php/calendars/<username>/default/";
var TimeZoneName = "Europe/Berlin";
var Username = "<username>";
var Password = "<password>";
var calDavCalendar = new CalDavCalendar(CalendarUri, TimeZoneName, Username, Password);
var calDavEvent = new CalDavEvent(calDavCalendar)
{
    Title = "Title ÄÖÜ...",
    StartsAt = new DateTime(2024, 6, 17, 10, 0, 0),
    EndsAt = new DateTime(2024, 6, 17, 11, 0, 0),
    Location = "Location ÄÖÜ...",
    Description = "Description ÄÖÜ...",
    Organizer = new Organizer("chang.park@horaios.de", "Chang Park"),
    Attendees = new List<Attendee>
    {
        new Attendee("chang@parkmail.de", "Chang Park (chang@parkmail.de)"),
        new Attendee("chang@familie-park.de", "Chang Park (chang@familie-park.de)")
    }
};
calDavEvent.Put();
Product Compatible and additional computed target framework versions.
.NET Framework net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
4.7.6.1304 130 7/6/2024
4.7.2.1129 106 7/6/2024

- readme added