Property AurasById
AurasById
Gets an observable cache of all auras indexed by their unique identifiers.
Declaration
IObservableCache<IAura, string> AurasById { get; }
Property Value
Type | Description |
---|---|
IObservableCache<IAura, string> |
Examples
Get active auras
var activeAuras = eyeServices.AurasById.Items
.Where(a => a.IsActive == true)
.ToList();