NotificationsApplicationBuilderExtensions.AddNotifications(IModuleBuilder<IWinApplicationBuilder>, Action<NotificationsOptions>) Method
In This Article
Adds the Notifications Module to your application.
Namespace: DevExpress.ExpressApp.Win.ApplicationBuilder
Assembly: DevExpress.ExpressApp.Notifications.Win.v24.2.dll
NuGet Package: DevExpress.ExpressApp.Notifications.Win
#Declaration
public static IModuleBuilder<IWinApplicationBuilder> AddNotifications(
this IModuleBuilder<IWinApplicationBuilder> builder,
Action<NotificationsOptions> configureOptions = null
)
#Parameters
Name | Type | Description |
---|---|---|
builder | IModule |
Allows you to register and configure Modules in your application, and chain further Module registrations. |
#Optional Parameters
Name | Type | Default | Description |
---|---|---|---|
configure |
Action<Notifications |
null | Options that you can use to configure the Notifications Module. |
#Returns
Type | Description |
---|---|
IModule |
Allows you to register and configure Modules in your application, and chain further Module registrations. |
#Remarks
The following example demonstrates how to use this method:
File: MySolution.Win\Startup.cs.
using DevExpress.ExpressApp.ApplicationBuilder;
using DevExpress.ExpressApp.Win.ApplicationBuilder;
// ...
public class ApplicationBuilder : IDesignTimeApplicationFactory {
public static WinApplication BuildApplication(string connectionString) {
var builder = WinApplication.CreateBuilder();
builder.UseApplication<MySolutionWindowsFormsApplication>();
builder.Modules
// ...
.AddNotifications(options => {
options.ShowRefreshAction = true;
})
// ...
}
// ...
}
See Also