Click or drag to resize

IDataSetAccessorTKey, TValue Interface

Represents an interface that provides an access to a DataSetTKey, TValue.

Namespace: Bosch.Vms.CameoSdk
Assembly: Bosch.Vms.CameoSdk (in Bosch.Vms.CameoSdk.dll) Version: 1.6.0.0
Syntax
C#
public interface IDataSetAccessor<TKey, TValue>

Type Parameters

TKey
Type of key.
TValue
Type of value.

The IDataSetAccessorTKey, TValue type exposes the following members.

Properties
 NameDescription
Public propertyCurrentDataSet Return the current data. If no data is available then the collection of DataSetTKey, TValue is empty.
Top
Events
 NameDescription
Public eventDataSetChanged Raised when the property CurrentDataSet is changed.
Top
Remarks
This interface can be used in a polling or callback scenario. In a polling scenario use CurrentDataSet for requesting the DataSetTKey, TValue. For a singular request it is recommended using CurrentDataSet too. In a callback scenario, use DataSetChanged event to get notified of changes.
See Also