| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
 | | Quintiq file version 2.0 |  | #parent: #root |  | Method CanSendDataByChunking () as Boolean |  | { |  |   Description: 'Check if the System has the DEF version required to use Chunking.' |  |   TextBody: |  |   [* |  |     // Jacky CHAN Aug-4-2016 (created) |  |     value := true; |  |      |  |     // for versions lower than 1.20, Chunking is not supported. |  |     if( this.MajorVersion() <= 1 and this.MinorVersion() < 20 ) |  |     { |  |       value := false; |  |     } |  |      |  |     return value; |  |   *] |  | } | 
 |