Method | Description | |
---|---|---|
AddOrdered ( string name, string address, ITopicUpdaterUpdateCallback callback ) : void |
Add a new line from an ordered topic.
|
|
AddUnordered ( ICollection |
Add a line or lines to the end of an unordered topic.
|
|
Close ( ) : void |
Close the session.
|
|
ControlClientUpdatingPagedTopics ( ) : System |
Constructor.
|
|
InsertUnordered ( int index, ICollection |
Insert a line or lines at a specified index within an unordered topic.
|
|
RemoveOrdered ( string name, ITopicUpdaterUpdateCallback callback ) : void |
Remove a line from an ordered topic.
|
|
RemoveUnordered ( int index, ITopicUpdaterUpdateCallback callback ) : void |
Remove a specific line from an unordered topic.
|
|
UpdateOrdered ( string name, string address, ITopicUpdaterUpdateCallback callback ) : void |
Update a line of an ordered topic.
|
|
UpdateUnordered ( int index, string value, ITopicUpdaterUpdateCallback callback ) : void |
Update a line within an unordered topic.
|
Method | Description | |
---|---|---|
Update ( string topic, IUpdate update, ITopicUpdaterUpdateCallback callback ) : void |
public AddOrdered ( string name, string address, ITopicUpdaterUpdateCallback callback ) : void | ||
name | string | The name field value. |
address | string | The address field value. |
callback | ITopicUpdaterUpdateCallback | The callback to notify the result. |
return | void |
public AddUnordered ( ICollection |
||
values | ICollection |
The lines to add. |
callback | ITopicUpdaterUpdateCallback | The callback to notify the result. |
return | void |
public ControlClientUpdatingPagedTopics ( ) : System | ||
return | System |
public InsertUnordered ( int index, ICollection |
||
index | int | The index at which to add the line. |
values | ICollection |
The lines to insert. |
callback | ITopicUpdaterUpdateCallback | The callback to notify the result. |
return | void |
public RemoveOrdered ( string name, ITopicUpdaterUpdateCallback callback ) : void | ||
name | string | The name of the line to remove. |
callback | ITopicUpdaterUpdateCallback | The callback to notify the result. |
return | void |
public RemoveUnordered ( int index, ITopicUpdaterUpdateCallback callback ) : void | ||
index | int | The index of the line to remove. |
callback | ITopicUpdaterUpdateCallback | The callback to notify the result. |
return | void |
public UpdateOrdered ( string name, string address, ITopicUpdaterUpdateCallback callback ) : void | ||
name | string | The name of the line to update. |
address | string | The new address field value. |
callback | ITopicUpdaterUpdateCallback | The callback to notify the result. |
return | void |
public UpdateUnordered ( int index, string value, ITopicUpdaterUpdateCallback callback ) : void | ||
index | int | The index of the line to update. |
value | string | The new line value. |
callback | ITopicUpdaterUpdateCallback | The callback to notify the result. |
return | void |