ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Blazor.Designer Assembly / GrapeCity.ActiveReports.Blazor.Designer Namespace / Notifications Class / Send Method
The notification level. Determines color and icons used for the notifications.
The notification caption. Shown by default when notification pops up, then used as a title in Notification Details view.
The notification content. Only visible when Notification Details are open.

In This Topic
    Send Method
    In This Topic
    Sends a notification with the specified level, caption, and content.
    Syntax
    'Declaration
     
    Public Function Send( _
       ByVal level As Level, _
       ByVal caption As String, _
       ByVal content As String _
    ) As Task
    public Task Send( 
       Level level,
       string caption,
       string content
    )

    Parameters

    level
    The notification level. Determines color and icons used for the notifications.
    caption
    The notification caption. Shown by default when notification pops up, then used as a title in Notification Details view.
    content
    The notification content. Only visible when Notification Details are open.

    Return Value

    A System.Threading.Tasks.Task representing the asynchronous operation of sending the notification.
    See Also