IRuntimeDataClient
Controls in an ArchestrA App must implement the IRuntimeDataClient interface to be able to read/write run-time data.
IRuntimeDataClient |
Copy Code |
---|---|
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; } } |