Class AlertList
Assembly: Volo.Abp.AspNetCore.Components.dll
Syntax
public class AlertList : ObservableCollection<AlertMessage>, IList<AlertMessage>, ICollection<AlertMessage>, IList, ICollection, IReadOnlyList<AlertMessage>, IReadOnlyCollection<AlertMessage>, IEnumerable<AlertMessage>, IEnumerable, INotifyCollectionChanged, INotifyPropertyChanged
Constructors
AlertList()
Declaration
Methods
Add(AlertType, string, string?, bool)
Declaration
public void Add(AlertType type, string text, string? title = null, bool dismissible = true)
Parameters
Danger(string, string?, bool)
Declaration
public void Danger(string text, string? title = null, bool dismissible = true)
Parameters
Info(string, string?, bool)
Declaration
public void Info(string text, string? title = null, bool dismissible = true)
Parameters
Success(string, string?, bool)
Declaration
public void Success(string text, string? title = null, bool dismissible = true)
Parameters
Warning(string, string?, bool)
Declaration
public void Warning(string text, string? title = null, bool dismissible = true)
Parameters
Implements
Extension Methods