MakoIoT.Device.Utilities.ICalParser
1.0.35.37969
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package MakoIoT.Device.Utilities.ICalParser --version 1.0.35.37969
NuGet\Install-Package MakoIoT.Device.Utilities.ICalParser -Version 1.0.35.37969
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="MakoIoT.Device.Utilities.ICalParser" Version="1.0.35.37969" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MakoIoT.Device.Utilities.ICalParser --version 1.0.35.37969
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: MakoIoT.Device.Utilities.ICalParser, 1.0.35.37969"
#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 MakoIoT.Device.Utilities.ICalParser as a Cake Addin #addin nuget:?package=MakoIoT.Device.Utilities.ICalParser&version=1.0.35.37969 // Install MakoIoT.Device.Utilities.ICalParser as a Cake Tool #tool nuget:?package=MakoIoT.Device.Utilities.ICalParser&version=1.0.35.37969
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
MakoIoT.Device.Utilities.ICalParser
Simple parser for ICalendar data. Extracts event details from VEVENT objects.
Usage
//parse calendar from web
HttpClient httpClient = new();
using var response = _httpClient.Get(_config.CalendarUrl);
response.EnsureSuccessStatusCode();
var parser = new Parser();
var events = new ArrayList();
using var reader = new StreamReader(response.Content.ReadAsStream())
parser.Parse(reader, e =>
{
//this function gets called when event object is found
events.Add(e);
});
Known limitations
- no support for recurring events (recurrence patters)
- no support for nestes VEVENT objects
- no time zones support
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
- nanoFramework.CoreLibrary (>= 1.15.5)
- nanoFramework.System.Collections (>= 1.5.31)
- nanoFramework.System.IO.Streams (>= 1.1.59)
- nanoFramework.System.Text (>= 1.2.54)
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 |
---|---|---|
1.0.38.52459 | 113 | 10/18/2024 |
1.0.37.33263 | 75 | 10/16/2024 |
1.0.36.2426 | 78 | 9/26/2024 |
1.0.35.37969 | 71 | 9/20/2024 |
1.0.34.52919 | 90 | 9/12/2024 |
1.0.33.56184 | 107 | 8/27/2024 |
1.0.32.41443 | 118 | 8/10/2024 |
1.0.30.49736 | 111 | 5/17/2024 |
1.0.29.40226 | 120 | 4/9/2024 |
1.0.28.24912 | 109 | 4/8/2024 |
1.0.27.5013 | 100 | 4/3/2024 |
1.0.26.26733 | 127 | 3/21/2024 |
1.0.25.42837 | 252 | 11/10/2023 |
1.0.23.31394 | 155 | 5/25/2023 |
1.0.22.24072 | 145 | 5/25/2023 |
1.0.21.45087 | 138 | 5/25/2023 |