FreeBusy Event
Fires for each Free/Busy element received in the response.
Syntax
[VB.NET] Public Event OnFreeBusy As OnFreeBusyHandler
[C#] public event OnFreeBusyHandler OnFreeBusy; public delegate void OnFreeBusyHandler(object sender, CaldavFreeBusyEventArgs e); class CaldavFreeBusyEventArgs : EventArgs { string BusyType {get;} string BusyRange {get;} }
Remarks
This event fires for each FREEBUSY element received in response to a GetFreeBusyReport request. The FBTYPE will be contained in the BusyType parameter, and the FREEBUSY value itself will be contained in the BusyRange parameter. The Free/Busy information will also be stored in the FreeBusy collection.