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();
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();
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();
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();