Lightstreamer .Net Adapter 1.7
|
Creates a TableInfo instance, collecting the various attributes of a Table (i.e. Subscription).
public: TableInfo(int winIndex, Mode mode, string group, string schema, int min, int max, string selector);
public TableInfo(int winIndex, Mode mode, string group, string schema, int min, int max, string selector);
Public Sub New(winIndex As Integer, mode As Mode, group As string, schema As string, min As Integer, max As Integer, selector As string)
Parameters |
Description |
int winIndex |
Only significant for very old versions of the client, for which it is the identifier of the Window to which the Table belongs. Otherwise, it should be always 1. |
Mode mode |
Publishing Mode for the Items in the Table (i.e. Subscription) (it must be the same across all the Table). |
string group |
The name of the Group to which the subscribed Items belong. |
string schema |
The name of the Schema used for the subscribed Items. |
int min |
The 1-based index of the first Item in the Group to be considered in the Table (i.e. Subscription). |
int max |
The 1-based index of the last Item in the Group to be considered in the Table (i.e. Subscription). |
string selector |
The name of the optional Selector associated to the table (i.e. Subscription). |