Questions tagged [ical.net]
10 questions
1
vote
1 answer
iCal.Net events working fine in Gmail but not for Outlook
I am using iCal.Net to send meeting invitations. It's working fine on Gmail and it's showing me event like:
But on Outlook it's not showing me any invite like accept, tentative, and decline options. It's showing me like:
It should be shown like…

Alamzaib Farooq
- 190
- 2
- 18
1
vote
0 answers
Ical.Net: What is the best way to check for event conflicts on a calendar?
I'm currently working on a solution which allows users to book a room for a meeting at a given time, with the option to make their meeting recurring using the calendar component that I'm exposing on the client side. Obviously in this scenario I…

murffff
- 11
- 1
1
vote
2 answers
Where is the occurrence "start" date in Ical.Net recurring event?
I am using the nuget package Ical.Net 4.2.0 in my C# project. I've created a recurring calendar event and need to identify the start DateTime for each occurrence. I query the calendar with GetOccurrences() like this:
var now =…

TryIst
- 13
- 5
0
votes
0 answers
ical.net library - show events in correct timezone
In PowerShell, I'm using the Ical.Net library to read a .ics file and extract the events, between a specific timeframe.
Add-Type -LiteralPath (Join-Path (Split-Path -Parent (Get-Package ICal.Net).Source) lib\netstandard2.0\Ical.Net.dll)
Add-Type…

aristosv
- 75
- 1
- 15
0
votes
0 answers
how to find recurring events occurrences
I am using the Ical.net library in PowerShell, to read a Google Calendar .ics file and find the events it contains. For example I can get the date, time and summary of an event like this:
Add-Type -LiteralPath (Join-Path (Split-Path -Parent…

aristosv
- 75
- 1
- 15
0
votes
0 answers
iCal.net - Get Events at current day
I have this scipt where I parse ical using iCal.Net.
WebClient client = new WebClient();
client.Encoding = Encoding.UTF8;
string iCal = client.DownloadString("https://myurl");
DateTime today = DateTime.Today.ToUniversalTime();
var todayEvents =…

Kevin
- 39
- 5
0
votes
0 answers
ICAL .NET Remove or Delete Event
I am using https://github.com/rianjs/ical.net with .Net 6 API. I am able to create an event like below.
var calendar = new Calendar();
calendar.AddTimeZone(new VTimeZone("America/Chicago"));
var icalEvent = new…

Jap Evans
- 1,097
- 8
- 22
- 42
0
votes
0 answers
Importing iCalendar file and display the informations of it on screen c# wpf
I was trying to code a time schedule app using c# and wpf (.NET). I've searched for informations and tutorials on how to do it, but didn't find any. Also, I've tried to use the iCal.net library but I can't find the docs.
So yeah, I want to import a…
0
votes
0 answers
Remove recurrent event from .ics
I'm using iCal.net to generate ICS files which are then send via Email. This works perfectly, and the events are properly imported when I click on the ICS file in the attachment.
However, I also want to be able to remove the already imported…

Kraishan
- 443
- 5
- 14
- 38
0
votes
0 answers
How to hide/disable the "More Options" link when displaying the vCalendar in Gmail
Using Ical.Net library, a vcalendar similar below is generated:
BEGIN:VCALENDAR
METHOD:REQUEST
PRODID:-//github.com/rianjs/ical.net//NONSGML ical.net 4.0//EN
VERSION:2.0
BEGIN:VEVENT
…

FeSoCal
- 1