An unofficial .NET API client for the MSRC CVRF API
dotnet add package JamieMagee.MicrosoftSecurityUpdates.Client
- Create an instance of
MicrosoftSecurityUpdatesClient
:
using var client = new MicrosoftSecurityUpdatesClient();
- Use the client to get information about security updates:
// Get all updates
var updates = await client.GetUpdatesAsync();
// Get all updates by year or month
var updates2022 = await client.GetUpdatesAsync("2022");
var updates2022Dec = await client.GetUpdatesAsync("2022-Dec");
// Get CVRF by month
var cvrf2022Dec = await client.GetCvrfByIdAsync("2022-Dec");
All packages in this repository are licensed under the MIT license.