Assuming that you use a method called HandleUpload for the handle_UploadData synchronization event, the following example
uses the GetUploadedTableByName method to return an UploadedTableData instance for the remoteOrders table:
// The method used for the handle_UploadData event.
public void HandleUpload(UploadData ut) {
UploadedTableData uploaded_t1 = ut.GetUploadedTableByName("remoteOrders");
// ...
}