Back to Devexpress

NotificationsApplicationBuilderExtensions.AddNotifications(IModuleBuilder<IWinApplicationBuilder>, Action<NotificationsOptions>) Method

expressappframework-devexpress-dot-expressapp-dot-win-dot-applicationbuilder-dot-notificationsapplicationbuilderextensions-dot-addnotifications-x28-imodulebuilder-iwinapplicationbuilder-action-notificationsoptions-x29.md

latest4.0 KB
Original Source

NotificationsApplicationBuilderExtensions.AddNotifications(IModuleBuilder<IWinApplicationBuilder>, Action<NotificationsOptions>) Method

Adds the Notifications Module to your application.

Namespace : DevExpress.ExpressApp.Win.ApplicationBuilder

Assembly : DevExpress.ExpressApp.Notifications.Win.v25.2.dll

NuGet Package : DevExpress.ExpressApp.Notifications.Win

Declaration

csharp
public static IModuleBuilder<IWinApplicationBuilder> AddNotifications(
    this IModuleBuilder<IWinApplicationBuilder> builder,
    Action<NotificationsOptions> configureOptions = null
)
vb
<ExtensionAttribute>
Public Shared Function AddNotifications(
    builder As IModuleBuilder(Of IWinApplicationBuilder),
    configureOptions As Action(Of NotificationsOptions) = Nothing
) As IModuleBuilder(Of IWinApplicationBuilder)

Parameters

NameTypeDescription
builderIModuleBuilder<IWinApplicationBuilder>

Allows you to register and configure Modules in your application, and chain further Module registrations.

|

Optional Parameters

NameTypeDefaultDescription
configureOptionsAction<NotificationsOptions>null

Options that you can use to configure the Notifications Module.

|

Returns

TypeDescription
IModuleBuilder<IWinApplicationBuilder>

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.

csharp
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

NotificationsApplicationBuilderExtensions Class

NotificationsApplicationBuilderExtensions Members

DevExpress.ExpressApp.Win.ApplicationBuilder Namespace