Chat now
.NET WinForms

Select Tools | NuGet Package Manager | Package Manager Console in the Visual Studio main menu and execute the following command:

Install-Package Logify.Alert.Win

Add the following code before the Application.Run() method to automatically intercept all unhandled exceptions and send the corresponding crash reports to Logify:

using DevExpress.Logify.Win;

LogifyAlert client = LogifyAlert.Instance;
client.ApiKey = "SPECIFY_YOUR_API_KEY_HERE";
client.StartExceptionsHandling();
Recompile, and that’s it! Your application is ready to report all unexpected crashes to DevExpress Logify.
Refer to our documentation for more information.
.NET WPF

Select Tools | NuGet Package Manager | Package Manager Console in the Visual Studio main menu and execute the following command:

Install-Package Logify.Alert.Wpf

Use the following code inside the App/Application class constructor to automatically intercept all unhandled exceptions and send the corresponding crash reports to Logify:

using DevExpress.Logify.WPF;

LogifyAlert client = LogifyAlert.Instance;
client.ApiKey = "SPECIFY_YOUR_API_KEY_HERE";
client.StartExceptionsHandling();
Recompile, and that’s it! Your application is ready to report all unexpected crashes to DevExpress Logify.
Refer to our documentation for more information.
.NET Console

Select Tools | NuGet Package Manager | Package Manager Console in the Visual Studio main menu and execute the following command:

Install-Package Logify.Alert.Console

Add the following code at the beginning of the Main() method in the Program.cs file to automatically intercept all unhandled exceptions and send the corresponding crash reports to Logify:

using DevExpress.Logify.Console;

LogifyAlert client = LogifyAlert.Instance;
client.ApiKey = "SPECIFY_YOUR_API_KEY_HERE";
client.StartExceptionsHandling();
Recompile, and that’s it! Your application is ready to report all unexpected crashes to DevExpress Logify.
Refer to our Documentation for more information.
.NET UWP

Select Tools | NuGet Package Manager | Package Manager Console in the Visual Studio main menu and execute the following command:

Install-Package Logify.Alert.UWP

In the App.xaml.cs file, set up the Logify Alert client and call its StartExceptionsHandling() method before InitializeComponent() to automatically intercept all unhandled exceptions and send the corresponding crash reports to Logify Alert.

using DevExpress.Logify.UWP;

LogifyAlert client = LogifyAlert.Instance;
client.ApiKey = "SPECIFY_YOUR_API_KEY_HERE";
client.StartExceptionsHandling();
Recompile, and that’s it! Your application is ready to report all unexpected crashes to DevExpress Logify.
Refer to our documentation for more information.