Property Auras
Auras
Gets an observable list of all auras in the system.
Declaration
IObservableList<IAura> Auras { get; }
Property Value
Type | Description |
---|---|
IObservableList<IAura> |
Examples
// Get active auras
var activeAuras = eyeServices.Auras.Items
.Where(a => a.IsActive == true)
.ToList();