Skip to main content
All docs
V25.1
  • DevExpress v25.1 Update — Your Feedback Matters

    Our What's New in v25.1 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

    Take the survey Not interested

    IToastNotificationService.CloseToast(String) Method

    Closes a toast notification with the specified identifier.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    #Declaration

    C#
    void CloseToast(
        string id
    )

    #Parameters

    Name Type Description
    id String

    The toast identifier.

    #Remarks

    Call the CloseToast method to close a toast with the specified Id property value.

    Razor
    <DxButton Text="Show a toast" Click="AddToast" />
    <DxButton Text="Hide a toast" Click="HideToast" />
    <DxToastProvider DisplayTime="@TimeSpan.Zero" />
    @code {
        [Inject] IToastNotificationService ToastService { get; set; }
    
        private void AddToast() {
            ToastService.ShowToast(new ToastOptions {
                Id = "TaskNotification",
                Title = "Notification",
                Text = "The process is completed.",
            });
        }
        private void HideToast() {
            ToastService.CloseToast("TaskNotification");
        }
    }
    
    See Also