FreeFlow class library

AlertsList Class

A list containing alerts

For a list of all members of this type, see AlertsList Members.

System.Object
   FreeFlow.Client.Connectable
      FreeFlow.Client.Refreshable
         FreeFlow.Client.List
            FreeFlow.Client.AlertsList

[Visual Basic]
Public Class AlertsList
    Inherits List
[C#]
public class AlertsList : List

Thread Safety

Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

Example

This shows how to populate an ASP.NET DataGrid from an AlertsList object. Connection is an already connected Connection object. Populating a WinForms DataGrid is very similar but without a call to DataBind.

[C#]
AlertsList alertsList = new AlertsList();
alertsList.Connection = Connection;
alertsList.AlertListType = AlertType.ToDo;
alertsList.RefreshItems();
dataGrid.DataSource = alertsList.ListDataTable;
dataGrid.DataBind();

Requirements

Namespace: FreeFlow.Client

Assembly: FreeFlow.Client (in FreeFlow.Client.dll)

See Also

AlertsList Members | FreeFlow.Client Namespace