You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -265,7 +265,7 @@ var qrCodeAsBitmap = qrCode.GetGraphic(20);
```
#### Parameter table
There is 1 overload:
There are 2 overloads:
**Overload 1**
Description: Creates an calendar event.
Expand All
@@ -280,6 +280,21 @@ Description: Creates an calendar event.
|allDayEvent|bool||Is it a full day event?|
|encoding|EventEncoding|EventEncoding.Universal|Type of encoding (universal or iCal)|
**Overload 2**
Description: Creates an calendar event.
|Parameter name|Type|Default|Description|
|---|---|---|---|
|subject|string||Subject/title of the calender event|
|description|string||Description of the event|
|location|string||Location (lat:long or address) of the event|
|start|DateTimeOffset||Start time of the event incl. offset in relation to UTC|
|end|DateTimeOffset||End time of the event incl. offset in relation to UTC|
|allDayEvent|bool||Is it a full day event?|
|encoding|EventEncoding|EventEncoding.Universal|Type of encoding (universal or iCal)|
#### Good to know
The parameters *description* and *location* are optional. They can be set to *null* or *string.Empty*. If you want to place an event to Apple users you should use *iCal* instead of *Universal* as *encoding*.