IRuntimeDataClient
- Last UpdatedAug 21, 2026
- 1 minute read
Controls in an ArchestrA App must implement the IRuntimeDataClient interface to be able to read/write run-time data.
IRuntimeDataClient
public interface IRuntimeDataClient
{
/// <summary>
/// Gets or sets the DataSubscription instance. Framework will the DataSubscription instance to be used by client to read/write runtime data.
/// </summary>
DataSubscription DataSubscription { get; set; }
}