Interface IUpdateTrigger
Represents a trigger causing an update.
Inherited Members
Namespace: RGB.NET.Core
Assembly: RGB.NET.Core.dll
Syntax
public interface IUpdateTrigger : IDisposable
Properties
| Edit this page View SourceLastUpdateTime
Gets the time spent for the last update.
Declaration
double LastUpdateTime { get; }
Property Value
Type | Description |
---|---|
double |
Methods
| Edit this page View SourceStart()
Starts the update trigger.
Declaration
void Start()
Events
| Edit this page View SourceStarting
Occurs when the trigger is starting up.
Declaration
event EventHandler<CustomUpdateData>? Starting
Event Type
Type | Description |
---|---|
EventHandler<CustomUpdateData> |
Update
Occurs when the trigger wants to cause an update.
Declaration
event EventHandler<CustomUpdateData>? Update
Event Type
Type | Description |
---|---|
EventHandler<CustomUpdateData> |