System.Diagnostics.EventLog 9.0.4

Prefix Reserved
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package System.Diagnostics.EventLog --version 9.0.4
                    
NuGet\Install-Package System.Diagnostics.EventLog -Version 9.0.4
                    
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="System.Diagnostics.EventLog" Version="9.0.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="System.Diagnostics.EventLog" Version="9.0.4" />
                    
Directory.Packages.props
<PackageReference Include="System.Diagnostics.EventLog" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add System.Diagnostics.EventLog --version 9.0.4
                    
#r "nuget: System.Diagnostics.EventLog, 9.0.4"
                    
#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.
#addin nuget:?package=System.Diagnostics.EventLog&version=9.0.4
                    
Install System.Diagnostics.EventLog as a Cake Addin
#tool nuget:?package=System.Diagnostics.EventLog&version=9.0.4
                    
Install System.Diagnostics.EventLog as a Cake Tool

About

This package provides types that allow applications to interact with the Windows Event Log service.

When an error occurs in a Windows machine, the system administrator or support representative must determine what caused the error, attempt to recover any lost data, and prevent the error from recurring. It is helpful if applications, the operating system, and other system services record important events, such as low-memory conditions or excessive attempts to access a disk. The system administrator can then use the Windows Event Log to help determine what conditions caused the error and identify the context in which it occurred.

Key Features

  • Allows reading from existing logs.
  • Allows writing entries to logs.
  • Can create or delete event sources.
  • Can delete logs.
  • Can respond to log entries.
  • Can create new logs when creating an event source.

How to Use

if(!EventLog.SourceExists("MySource"))
{
    // An event log source should not be created and immediately used.
    // There is a latency time to enable the source, it should be created
    // prior to executing the application that uses the source.
    // Execute this sample a second time to use the new source.
    EventLog.CreateEventSource("MySource", "MyNewLog");
    Console.WriteLine("Event source created. Exiting, execute the application a second time to use the source.");
    // The source is created. Exit the application to allow it to be registered.
    return;
}

EventLog myLog = new();
myLog.Source = "MySource";
myLog.WriteEntry("Writing an informational entry to the event log.");

Notes:

  • This assembly is only supported on Windows operating systems.
  • Starting with Windows Vista, you must run the application as an administrator to interact with the Windows Event Log service using the System.Diagnostics.EventLog class.

Main Types

The main types provided by this library are:

Under the System.Diagnostics namespace, the main types are:

Under the System.Diagnostics.Eventing.Reader namespace, the main types are:

Additional Documentation

Feedback & Contributing

System.Diagnostics.EventLog is released as open source under the MIT license. Bug reports and contributions are welcome at the GitHub repository.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (212)

Showing the top 5 NuGet packages that depend on System.Diagnostics.EventLog:

Package Downloads
System.Configuration.ConfigurationManager

Provides types that support using XML configuration files (app.config). This package exists only to support migrating existing .NET Framework code that already uses System.Configuration. When writing new code, use another configuration system instead, such as Microsoft.Extensions.Configuration.

Castle.Core

Castle Core, including DynamicProxy, Logging Abstractions and DictionaryAdapter

Microsoft.Extensions.Logging.EventLog

Windows Event Log logger provider implementation for Microsoft.Extensions.Logging.

System.ServiceProcess.ServiceController

Provides the System.ServiceProcess.ServiceController class, which allows you to connect to a Windows service, manipulate it, or get information about it. Commonly Used Types: System.ServiceProcess.ServiceController System.ServiceProcess.ServiceControllerStatus System.ServiceProcess.ServiceType

Microsoft.CodeAnalysis.Features

.NET Compiler Platform ("Roslyn") support for creating editing experiences. More details at https://aka.ms/roslyn-packages This package was built from the source at https://github.com/dotnet/roslyn/commit/75e79dace86b274327a1afe479228d82a06051a4.

GitHub repositories (38)

Showing the top 20 popular GitHub repositories that depend on System.Diagnostics.EventLog:

Repository Stars
microsoft/PowerToys
Windows system utilities to maximize productivity
PowerShell/PowerShell
PowerShell for every system!
mRemoteNG/mRemoteNG
mRemoteNG is the next generation of mRemote, open source, tabbed, multi-protocol, remote connections manager.
dotnet/wpf
WPF is a .NET Core UI framework for building Windows desktop applications.
NLog/NLog
NLog - Advanced and Structured Logging for Various .NET Platforms
microsoft/WPF-Samples
Repository for WPF related samples
dotnet/corert
This repo contains CoreRT, an experimental .NET Core runtime optimized for AOT (ahead of time compilation) scenarios, with the accompanying compiler toolchain.
dotnet/macios
.NET for iOS, Mac Catalyst, macOS, and tvOS provide open-source bindings of the Apple SDKs for use with .NET managed languages such as C#
HotCakeX/Harden-Windows-Security
Harden Windows Safely, Securely using Official Supported Microsoft methods and proper explanation | Always up-to-date and works with the latest build of Windows | Provides tools and Guides for Personal, Enterprise, Government and Military security levels | Read The Rationale https://github.com/HotCakeX/Harden-Windows-Security/blob/main/Rationale.md
castleproject/Core
Castle Core, including Castle DynamicProxy, Logging Services and DictionaryAdapter
ProtonVPN/win-app
Official ProtonVPN Windows app
ariacom/Seal-Report
Database Reporting Tool and Tasks (.Net)
matterpreter/OffensiveCSharp
Collection of Offensive C# Tooling
MarimerLLC/csla
A home for your business logic in any .NET application.
dahall/TaskScheduler
Provides a .NET wrapper for the Windows Task Scheduler. It aggregates the multiple versions, provides an editor and allows for localization.
WereDev/Wu10Man
Enable/Disable Windows 10 Automatic Updates
DragoQCC/CrucibleC2
A C# Command & Control framework
microsoft/vstest
Visual Studio Test Platform is the runner and engine that powers test explorer and vstest.console.
OData/WebApi
OData Web API: A server library built upon ODataLib and WebApi
dotnet/dotnet-api-docs
.NET API reference documentation (.NET 5+, .NET Core, .NET Framework)
Version Downloads Last updated
10.0.0-preview.2.25163.2 9,450 3/18/2025
10.0.0-preview.1.25080.5 12,941 2/25/2025
9.0.4 3,535 4/8/2025
9.0.3 1,842,838 3/11/2025
9.0.2 3,414,419 2/11/2025
9.0.1 4,239,505 1/14/2025
9.0.0 11,801,933 11/12/2024
9.0.0-rc.2.24473.5 161,846 10/8/2024
9.0.0-rc.1.24431.7 88,568 9/10/2024
9.0.0-preview.7.24405.7 55,219 8/13/2024
9.0.0-preview.6.24327.7 65,948 7/9/2024
9.0.0-preview.5.24306.7 37,903 6/11/2024
9.0.0-preview.4.24266.19 38,461 5/21/2024
9.0.0-preview.3.24172.9 122,455 4/11/2024
9.0.0-preview.2.24128.5 44,354 3/12/2024
9.0.0-preview.1.24080.9 88,910 2/13/2024
8.0.2 108 4/8/2025
8.0.1 37,108,251 10/8/2024
8.0.0 158,002,129 11/14/2023
8.0.0-rc.2.23479.6 320,006 10/10/2023
8.0.0-rc.1.23419.4 192,888 9/12/2023
8.0.0-preview.7.23375.6 93,039 8/8/2023
8.0.0-preview.6.23329.7 95,321 7/11/2023
8.0.0-preview.5.23280.8 55,768 6/13/2023
8.0.0-preview.4.23259.5 291,022 5/16/2023
8.0.0-preview.3.23174.8 157,591 4/11/2023
8.0.0-preview.2.23128.3 59,717 3/14/2023
8.0.0-preview.1.23110.8 108,762 2/21/2023
7.0.0 109,996,144 11/7/2022
7.0.0-rc.2.22472.3 217,549 10/11/2022
7.0.0-rc.1.22426.10 148,966 9/14/2022
7.0.0-preview.7.22375.6 70,160 8/9/2022
7.0.0-preview.6.22324.4 48,064 7/12/2022
7.0.0-preview.5.22301.12 43,145 6/14/2022
7.0.0-preview.4.22229.4 49,414 5/10/2022
7.0.0-preview.3.22175.4 48,206 4/13/2022
7.0.0-preview.2.22152.2 24,899 3/14/2022
7.0.0-preview.1.22076.8 25,163 2/17/2022
6.0.0 424,800,442 11/8/2021
6.0.0-rc.2.21480.5 375,077 10/12/2021
6.0.0-rc.1.21451.13 272,752 9/14/2021
6.0.0-preview.7.21377.19 126,740 8/10/2021
6.0.0-preview.6.21352.12 50,645 7/14/2021
6.0.0-preview.5.21301.5 34,403 6/15/2021
6.0.0-preview.4.21253.7 37,720 5/24/2021
6.0.0-preview.3.21201.4 43,071 4/8/2021
6.0.0-preview.2.21154.6 75,876 3/11/2021
6.0.0-preview.1.21102.12 49,883 2/12/2021
5.0.1 8,964,873 2/9/2021 5.0.1 is deprecated because it is no longer maintained.
5.0.0 120,952,824 11/9/2020 5.0.0 is deprecated because it is no longer maintained.
5.0.0-rc.2.20475.5 98,036 10/13/2020
5.0.0-rc.1.20451.14 62,816 9/14/2020
5.0.0-preview.8.20407.11 34,355 8/25/2020
5.0.0-preview.7.20364.11 43,424 7/21/2020
5.0.0-preview.6.20305.6 33,328 6/25/2020
5.0.0-preview.5.20278.1 15,465 6/10/2020
5.0.0-preview.4.20251.6 35,455 5/18/2020
5.0.0-preview.3.20214.6 64,681 4/23/2020
5.0.0-preview.2.20160.6 63,333 4/2/2020
5.0.0-preview.1.20120.5 20,785 3/16/2020
4.7.0 133,158,463 12/3/2019
4.7.0-preview3.19551.4 18,929 11/13/2019
4.7.0-preview2.19523.17 19,248 11/1/2019
4.7.0-preview1.19504.10 20,182 10/15/2019
4.6.0 20,112,026 9/23/2019
4.6.0-rc1.19456.4 75,848 9/16/2019
4.6.0-preview9.19421.4 31,592 9/4/2019
4.6.0-preview9.19416.11 801 9/4/2019
4.6.0-preview8.19405.3 69,122 8/13/2019
4.6.0-preview7.19362.9 38,931 7/23/2019
4.6.0-preview6.19303.8 73,965 6/12/2019
4.6.0-preview6.19264.9 814 9/4/2019
4.6.0-preview5.19224.8 34,217 5/6/2019
4.6.0-preview4.19212.13 4,256 4/18/2019
4.6.0-preview3.19128.7 10,969 3/6/2019
4.6.0-preview.19073.11 19,945 1/29/2019
4.6.0-preview.18571.3 17,455 12/3/2018
4.5.0 37,298,222 5/29/2018
4.5.0-rc1 68,300 5/6/2018
4.5.0-preview2-26406-04 30,768 4/10/2018
4.5.0-preview1-26216-02 38,553 2/26/2018
4.5.0-preview1-25914-04 306,511 11/15/2017