-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAceQL.Client.xml
4455 lines (4435 loc) · 210 KB
/
AceQL.Client.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<doc>
<assembly>
<name>AceQL.Client</name>
</assembly>
<members>
<member name="T:AceQL.Client.Api.Batch.PrepStatementParamsHolder">
<summary>
Class PrepStatementParamsHolder. Allows to store all parameters of a Prepared Statement
</summary>
</member>
<member name="F:AceQL.Client.Api.Batch.PrepStatementParamsHolder.statementParameters1">
All the PreparedStatement parameters and their values
</member>
<member name="M:AceQL.Client.Api.Batch.PrepStatementParamsHolder.#ctor(System.Collections.Generic.Dictionary{System.String,System.String})">
<summary>
Initializes a new instance of the <see cref="T:AceQL.Client.Api.Batch.PrepStatementParamsHolder"/> class.
</summary>
<param name="statementParameters">The statement parameters.</param>
</member>
<member name="P:AceQL.Client.Api.Batch.PrepStatementParamsHolder.statementParameters">
<summary>
Gets the statement parameters. THE PROPERTY MUST BE IN LOWERCASE FIRST CHAR FOR HOST TO DESERIALIZE.
</summary>
<value>The statement parameters.</value>
</member>
<member name="M:AceQL.Client.Api.Batch.PrepStatementParamsHolder.ToString">
<summary>
Returns a <see cref="T:System.String" /> that represents this instance.
</summary>
<returns>A <see cref="T:System.String" /> that represents this instance.</returns>
</member>
<member name="T:AceQL.Client.Api.Batch.UpdateCountsArrayDto">
<summary>
Class UpdateCountsArrayDto.
</summary>
</member>
<member name="M:AceQL.Client.Api.Batch.UpdateCountsArrayDto.#ctor(System.Int32[])">
<summary>
Initializes a new instance of the <see cref="T:AceQL.Client.Api.Batch.UpdateCountsArrayDto"/> class.
</summary>
<param name="updateCountsArray">The update counts array.</param>
</member>
<member name="M:AceQL.Client.Api.Batch.UpdateCountsArrayDto.GetUpdateCountsArray">
<summary>
Gets the update counts array.
</summary>
<returns>System.Int32[].</returns>
</member>
<member name="M:AceQL.Client.Api.Batch.UpdateCountsArrayDto.ToString">
<summary>
Returns a <see cref="T:System.String" /> that represents this instance.
</summary>
<returns>A <see cref="T:System.String" /> that represents this instance.</returns>
</member>
<member name="F:AceQL.Client.Api.Http.AceQLBlobApi.url">
<summary>
The URL
</summary>
</member>
<member name="F:AceQL.Client.Api.Http.AceQLBlobApi.simpleTracer">
<summary>
The simple tracer
</summary>
</member>
<member name="P:AceQL.Client.Api.Http.AceQLBlobApi.HttpStatusCode">
<summary>
Gets the HTTP status code of hte last executed HTTP call
</summary>
<value>The HTTP status code.</value>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLBlobApi.GetBlobLengthAsync(System.String)">
<summary>
Returns the server Blob/Clob length.
</summary>
<param name="blobId">the Blob/Clob Id.</param>
<returns>the server Blob/Clob length.</returns>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLBlobApi.BlobDownloadAsync(System.String)">
<summary>
Downloads a Blob/Clob from the server.
</summary>
<param name="blobId">the Blob/Clob Id</param>
<returns>the Blob input stream</returns>
</member>
<member name="F:AceQL.Client.Api.Http.AceQLHealthCheckInfoApi.url">
<summary>
The URL
</summary>
</member>
<member name="F:AceQL.Client.Api.Http.AceQLHealthCheckInfoApi.simpleTracer">
<summary>
The simple tracer
</summary>
</member>
<member name="P:AceQL.Client.Api.Http.AceQLHealthCheckInfoApi.HttpStatusCode">
<summary>
Gets the HTTP status code of hte last executed HTTP call
</summary>
<value>The HTTP status code.</value>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHealthCheckInfoApi.GetHealthCheckInfoDtoAsync">
<summary>
Gets the HealthCheck DTO
</summary>
<returns>HealthCheckInfoDto.</returns>
<exception cref="T:AceQL.Client.Api.AceQLException">
0
</exception>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHealthCheckInfoApi.CallWithGetAsync(System.String,System.String)">
<summary>
Calls the with get.
</summary>
<param name="action">The action.</param>
<param name="actionParameter">The action parameter.</param>
<returns>String.</returns>
</member>
<member name="T:AceQL.Client.Api.Http.AceQLHttpApi">
<summary>
Class <see cref="T:AceQL.Client.Api.Http.AceQLHttpApi"/>. Allows to create a Connection to the remote server
</summary>
</member>
<member name="F:AceQL.Client.Api.Http.AceQLHttpApi.server">
<summary>
The server URL
</summary>
</member>
<member name="F:AceQL.Client.Api.Http.AceQLHttpApi.database">
<summary>
The database
</summary>
</member>
<member name="F:AceQL.Client.Api.Http.AceQLHttpApi.proxyUri">
<summary>
The Web Proxy Uri
</summary>
</member>
<member name="F:AceQL.Client.Api.Http.AceQLHttpApi.proxyCredentials">
<summary>
The credentials
</summary>
</member>
<member name="F:AceQL.Client.Api.Http.AceQLHttpApi.timeout">
<summary>
The timeout in milliseconds
</summary>
</member>
<member name="F:AceQL.Client.Api.Http.AceQLHttpApi.requestHeaders">
<summary>
The request headers added by the user
</summary>
</member>
<member name="F:AceQL.Client.Api.Http.AceQLHttpApi.prettyPrinting">
<summary>
The pretty printing
</summary>
</member>
<member name="F:AceQL.Client.Api.Http.AceQLHttpApi.gzipResult">
<summary>
The gzip result
</summary>
</member>
<member name="F:AceQL.Client.Api.Http.AceQLHttpApi.url">
<summary>
The URL
</summary>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.#ctor">
<summary>
Initializes a new instance of the <see cref="T:AceQL.Client.Api.Http.AceQLHttpApi"/> class.
</summary>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.#ctor(System.String)">
<summary>
Initializes a new instance of the <see cref="T:AceQL.Client.Api.Http.AceQLHttpApi"/> class.
</summary>
<param name="connectionString">The connection string.
</param>"
<exception cref="T:System.ArgumentException">connectionString token does not contain a = separator: " + line</exception>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.ResetRequestHeaders">
<summary>
Resets the request headers.
</summary>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.AddRequestHeader(System.String,System.String)">
<summary>
Adds A request header. This will be added at each server call.
</summary>
<param name="name">The header name.</param>
<param name="value">The header value.</param>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.OpenAsync">
<summary>
Opens this instance.
</summary>
<exception cref="T:System.ArgumentNullException"> if a required parameter extracted from connection string is missing.
</exception>
<exception cref="T:AceQL.Client.Api.AceQLException"> if any other Exception occurs.
</exception>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.DummyGetCallForProxyAuthentication">
<summary>
Dummies the get call for proxy authentication.
Hack to force a first GET on just aceql servlet if we are with a proxy, just to avoid system failure
Because of a bug in C#, if a POST is done first to detect a 407 (proxy auth asked), HttpClient throws an Exception
</summary>
</member>
<member name="P:AceQL.Client.Api.Http.AceQLHttpApi.GzipResult">
<summary>
Gets a value indicating whether [gzip result] is on or off.
</summary>
<value><c>true</c> if [gzip result]; otherwise, <c>false</c>.</value>
</member>
<member name="P:AceQL.Client.Api.Http.AceQLHttpApi.Timeout">
<summary>
The timeout in milliseconds
</summary>
</member>
<member name="P:AceQL.Client.Api.Http.AceQLHttpApi.ConnectionString">
<summary>
Gets the connection string.
</summary>
<value>The connection string.</value>
</member>
<member name="P:AceQL.Client.Api.Http.AceQLHttpApi.UseCancellationToken">
<summary>
Says it use has passed a CancellationToken
</summary>
</member>
<member name="P:AceQL.Client.Api.Http.AceQLHttpApi.HttpStatusCode">
<summary>
Gets the HTTP status code of hte latsexecuted HTTP call
</summary>
<value>The HTTP status code.</value>
</member>
<member name="P:AceQL.Client.Api.Http.AceQLHttpApi.ConnectionInfo">
<summary>
Gets the connection information.
</summary>
<value>The connection information.</value>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.CallApiNoResultAsync(System.String,System.String)">
<summary>
Calls the API no result.
</summary>
<param name="commandName">Name of the command.</param>
<param name="commandOption">The command option.</param>
<exception cref="T:System.ArgumentNullException">commandName is null!</exception>
<exception cref="T:AceQL.Client.Api.AceQLException">
HTTP_FAILURE" + " " + httpStatusDescription - 0
or
or
0
</exception>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.CallApiWithResultAsync(System.String,System.String)">
<summary>
Calls the API with result.
</summary>
<param name="commandName">Name of the command.</param>
<param name="commandOption">The command option.</param>
<exception cref="T:System.ArgumentNullException">commandName is null!</exception>
<exception cref="T:AceQL.Client.Api.AceQLException">
HTTP_FAILURE" + " " + httpStatusDescription - 0
or
or
0
</exception>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.CallWithGetAsync(System.String,System.String)">
<summary>
Calls the action with get.
</summary>
<param name="action">The action.</param>
<param name="actionParameter">The action parameter.</param>
<returns>String.</returns>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.ExecutePreparedStatementBatch(System.String,System.String)">
<summary>
Executes the prepared statement batch.
</summary>
<param name="sql">The SQL.</param>
<param name="batchFileParameters">The path of file containing the prepared statement parameters.</param>
<returns>Task<System.Int32[]>.</returns>
<exception cref="T:AceQL.Client.Api.AceQLException"></exception>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.UpdateOutParametersValues(System.String,AceQL.Client.Api.AceQLParameterCollection)">
<summary>
Update the OUT parameters values
</summary>
<param name="result"></param>
<param name="parameters"></param>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.BlobUploadAsync(System.String,System.IO.Stream,System.Int64)">
<summary>
Uploads a Blob/Clob on the server.
</summary>
<param name="blobId">the Blob/Clob Id</param>
<param name="stream">the stream of the Blob/Clob</param>
<param name="totalLength">the total length of all BLOBs to upload</param>
<returns>The result as JSON format.</returns>
<exception cref="T:System.ArgumentNullException">
blobId is null!
or
filePath is null!
</exception>
<exception cref="T:System.IO.FileNotFoundException">filePath does not exist: " + filePath</exception>
<exception cref="T:AceQL.Client.Api.AceQLException">HTTP_FAILURE" + " " + httpStatusDescription - 0</exception>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.GetBlobLengthAsync(System.String)">
<summary>
Returns the server Blob/Clob length.
</summary>
<param name="blobId">the Blob/Clob Id.</param>
<returns>the server Blob/Clob length.</returns>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.BlobDownloadAsync(System.String)">
<summary>
Downloads a Blob/Clob from the server.
</summary>
<param name="blobId">the Blob/Clob Id</param>
<returns>the Blob input stream</returns>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.DbSchemaDownloadAsync(System.String,System.String)">
<summary>
Databases the schema download.
</summary>
<param name="format">The format.</param>
<param name="tableName">Name of the table.</param>
<returns>Task<Stream>.</returns>
<exception cref="T:System.ArgumentNullException">format is null!</exception>
<exception cref="T:AceQL.Client.Api.AceQLException">0</exception>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.GetDbMetadataAsync">
<summary>
Gets the database metadata.
</summary>
<returns>Task<System.String>.</returns>
<exception cref="T:AceQL.Client.Api.AceQLException">
0
</exception>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.GetTableNamesAsync(System.String)">
<summary>
Gets the table names.
</summary>
<param name="tableType">Type of the table.</param>
<returns>Task<TableNamesDto>.</returns>
<exception cref="T:AceQL.Client.Api.AceQLException">
0
</exception>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.GetTableAsync(System.String)">
<summary>
Gets the table.
</summary>
<param name="tableName">Name of the table.</param>
<returns>Task<TableDto>.</returns>
<exception cref="T:AceQL.Client.Api.AceQLException">
0
</exception>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.GetDatabaseInfo">
<summary>
Gets the database information.
</summary>
<returns>Task<DatabaseInfo>.</returns>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.GetLimitsInfo">
<summary>
Gets the mimits information.
</summary>
<returns>Task<DatabaseInfo>.</returns>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.ResetCancellationToken">
<summary>
To be call at end of each of each public aysnc(CancellationToken) calls to reset to false the usage of a CancellationToken with http calls
and some reader calls.
</summary>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.SetCancellationToken(System.Threading.CancellationToken)">
<summary>
Sets the CancellationToken asked by user to pass for the current public xxxAsync() call api.
</summary>
<param name="cancellationToken">CancellationToken asked by user to pass for the current public xxxAsync() call api.</param>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.GetProgressIndicator">
<summary>
Returns the progress indicator variable that will store Blob/Clob upload or download progress between 0 and 100.
</summary>
<returns>The progress indicator variable that will store Blob/Clob upload or download progress between 0 and 100.</returns>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.SetProgressIndicator(AceQL.Client.Api.AceQLProgressIndicator)">
<summary>
Sets the progress indicator variable that will store Blob/Clob upload or download progress between 0 and 100. Will be used by progress indicators to show the progress.
</summary>
<param name="progressIndicator">The progress variable.</param>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.GetVersion">
<summary>
Returns the SDK current Version.
</summary>
<returns>the SDK current Version.</returns>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLHttpApi.CloseAsync">
<summary>
Closes the connection to the remote database and closes the http session.
</summary>
</member>
<member name="F:AceQL.Client.Api.Http.AceQLMetadataApi.url">
<summary>
The URL
</summary>
</member>
<member name="F:AceQL.Client.Api.Http.AceQLMetadataApi.simpleTracer">
<summary>
The simple tracer
</summary>
</member>
<member name="P:AceQL.Client.Api.Http.AceQLMetadataApi.HttpStatusCode">
<summary>
Gets the HTTP status code of hte last executed HTTP call
</summary>
<value>The HTTP status code.</value>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLMetadataApi.DbSchemaDownloadAsync(System.String,System.String)">
<summary>
Databases the schema download.
</summary>
<param name="format">The format.</param>
<param name="tableName">Name of the table.</param>
<returns>Task<Stream>.</returns>
<exception cref="T:System.ArgumentNullException">format is null!</exception>
<exception cref="T:AceQL.Client.Api.AceQLException">0</exception>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLMetadataApi.GetDbMetadataAsync">
<summary>
Gets the database metadata.
</summary>
<returns>Task<System.String>.</returns>
<exception cref="T:AceQL.Client.Api.AceQLException">
0
</exception>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLMetadataApi.GetTableNamesAsync(System.String)">
<summary>
Gets the table names.
</summary>
<param name="tableType">Type of the table.</param>
<returns>Task<TableNamesDto>.</returns>
<exception cref="T:AceQL.Client.Api.AceQLException">
0
</exception>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLMetadataApi.GetTableAsync(System.String)">
<summary>
Gets the table.
</summary>
<param name="tableName">Name of the table.</param>
<returns>Task<TableDto>.</returns>
<exception cref="T:AceQL.Client.Api.AceQLException">
0
</exception>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLMetadataApi.CallWithGetAsync(System.String,System.String)">
<summary>
Calls the with get.
</summary>
<param name="action">The action.</param>
<param name="actionParameter">The action parameter.</param>
<returns>String.</returns>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLMetadataApi.GetDatabaseInfoDto">
<summary>
Gets the database information dto.
</summary>
<returns>Task<DatabaseInfoDto>.</returns>
<exception cref="T:AceQL.Client.Api.AceQLException"></exception>
<exception cref="T:AceQL.Client.Api.AceQLException">0</exception>
</member>
<member name="M:AceQL.Client.Api.Http.AceQLMetadataApi.GetLimitsInfoDto">
<summary>
Gets the limits information dto.
</summary>
<returns>Task<DatabaseInfoDto>.</returns>
<exception cref="T:AceQL.Client.Api.AceQLException"></exception>
<exception cref="T:AceQL.Client.Api.AceQLException">0</exception>
</member>
<member name="T:AceQL.Client.Api.Http.DefaultWebProxyCreator">
<summary>
Class DefaultWebProxyCreator. Allows to get the <see cref="P:System.Net.WebRequest.DefaultWebProxy"/> or <c>System.Net.WebRequest.GetSystemProxy()</c> proxy value to use.
</summary>
</member>
<member name="M:AceQL.Client.Api.Http.DefaultWebProxyCreator.GetWebProxy">
<summary>
Gets the the Default Or System proxy in use. Will return null if no Default/System proxy is in use.
</summary>
<returns>System.Net.IWebProxy.</returns>
</member>
<member name="T:AceQL.Client.Api.Http.FormUploadStream">
<summary>
Allows filePath upload (Blobs) using streaming and supporting progress indicators
</summary>
</member>
<member name="M:AceQL.Client.Api.Http.FormUploadStream.UploadAsync(System.String,System.String,System.Net.ICredentials,System.Int32,System.Boolean,System.String,System.IO.Stream,System.Int64,AceQL.Client.Api.AceQLProgressIndicator,System.Threading.CancellationToken,System.Boolean,System.Collections.Generic.Dictionary{System.String,System.String})">
<summary>
Uploads a filePath using a blob reference.
</summary>
<param name="url"></param>
<param name="proxyUri"></param>
<param name="credentials"></param>
<param name="timeout"></param>
<param name="enableDefaultSystemAuthentication"></param>
<param name="blobId"></param>
<param name="stream"></param>
<param name="totalLength"></param>
<param name="progressIndicator"></param>
<param name="cancellationToken"></param>
<param name="useCancellationToken"></param>
<param name="requestHeaders">The request headers to add to all requests.</param>
<returns></returns>
</member>
<member name="T:AceQL.Client.Api.Http.HttpClientHandlerBuilderNew">
<summary>
Class HttpClientHandlerBuilder. Allows to Build an HttpClientHandler.
</summary>
</member>
<member name="M:AceQL.Client.Api.Http.HttpClientHandlerBuilderNew.Build(System.String,System.Net.ICredentials,System.Boolean)">
<summary>
Builds an HttpClientHandler instance with proxy settings, if necessary. IWebProxy used is System.Net.WebRequest.DefaultWebProxy
</summary>
<param name="proxyUri">The URI of the web proxy to use.</param>
<param name="credentials">The credentials to use for an authenticated proxy. null if none.</param>
<param name="enableDefaultSystemAuthentication">if True ==> call HttpClientHandler.UseDefaultCredentials = true</param>
<returns>The HtpClientHandler.</returns>
</member>
<member name="T:AceQL.Client.Api.Http.HttpClientHandlerCreator">
<summary>
Class HttpClientHandlerCreator. HttpClientHandler creation to be used with HttpClient.
</summary>
</member>
<member name="M:AceQL.Client.Api.Http.HttpClientHandlerCreator.#ctor(System.Net.IWebProxy,System.Net.ICredentials,System.Boolean)">
<summary>
Initializes a new instance of the <see cref="T:AceQL.Client.Api.Http.HttpClientHandlerCreator"/> class.
</summary>
<param name="webProxy">The proxy to use. If null, there is no proxy to use.</param>
<param name="credentials">The credentials. Can be null.</param>
<param name="enableDefaultSystemAuthentication">if set to <c>true</c> [enable default system authentication].</param>
</member>
<member name="M:AceQL.Client.Api.Http.HttpClientHandlerCreator.GetHttpClientHandler">
<summary>
Creates the HttpClientHandler instance with or without a web proxy.
</summary>
<returns>HttpClientHandler.</returns>
</member>
<member name="T:AceQL.Client.Api.Http.HttpManager">
<summary>
Class HttpManager. A wrapped HttpClient tool that can do everything
</summary>
</member>
<member name="F:AceQL.Client.Api.Http.HttpManager.timeout">
<summary>
The timeout in milliseconds
</summary>
</member>
<member name="F:AceQL.Client.Api.Http.HttpManager.httpStatusCode">
<summary>
The HTTP status code
</summary>
</member>
<member name="F:AceQL.Client.Api.Http.HttpManager.httpClient">
<summary>
The HTTP client
</summary>
</member>
<member name="F:AceQL.Client.Api.Http.HttpManager.proxy">
<summary>
The proxy. Is null if no Defaut/System proxy and no used defined proxy.
</summary>
</member>
<member name="M:AceQL.Client.Api.Http.HttpManager.#ctor(AceQL.Client.src.Api.Http.HttpManagerHolder)">
<summary>
Initializes a new instance of the <see cref="T:AceQL.Client.Api.Http.HttpManager"/> class.
</summary>
<param name="httpManagerHolder">The HTTP manager holder.</param>
</member>
<member name="M:AceQL.Client.Api.Http.HttpManager.BuildHttpClient(System.String,System.Net.ICredentials,System.Boolean,System.Collections.Generic.Dictionary{System.String,System.String})">
<summary>
Builds the HTTP client.
</summary>
<param name="proxyUri">The proxy URI.</param>
<param name="proxyCredentials">The proxy credentials.</param>
<param name="enableDefaultSystemAuthentication">if set to <c>true</c> [enable default system authentication].</param>
<param name="requestHeaders">The request headers to add to all requests.</param>
</member>
<member name="M:AceQL.Client.Api.Http.HttpManager.AddRequestHeaders(System.Net.Http.HttpClient,System.Collections.Generic.Dictionary{System.String,System.String})">
<summary>
Add request headers to the HttpClient instance.
</summary>
<param name="httpClient"></param>
<param name="requestHeaders"></param>
</member>
<member name="P:AceQL.Client.Api.Http.HttpManager.UseCancellationToken">
<summary>
Says it use has passed a CancellationToken
</summary>
</member>
<member name="P:AceQL.Client.Api.Http.HttpManager.HttpStatusCode">
<summary>
Gets the HTTP status code of the last HTTP call.
</summary>
<value>The HTTP status code.</value>
</member>
<member name="P:AceQL.Client.Api.Http.HttpManager.Proxy">
<summary>
Gets or sets the proxy.
</summary>
<value>The proxy.</value>
</member>
<member name="M:AceQL.Client.Api.Http.HttpManager.ResetCancellationToken">
<summary>
To be call at end of each of each public aysnc(CancellationToken) calls to reset to false the usage of a CancellationToken with http calls
and some reader calls.
</summary>
</member>
<member name="M:AceQL.Client.Api.Http.HttpManager.SetCancellationToken(System.Threading.CancellationToken)">
<summary>
Sets the CancellationToken asked by user to pass for the current public xxxAsync() call api.
</summary>
<param name="cancellationToken">CancellationToken asked by user to pass for the current public xxxAsync() call api.</param>
</member>
<member name="M:AceQL.Client.Api.Http.HttpManager.CallWithGetReturnStreamAsync(System.String)">
<summary>
Calls the with get return stream.
</summary>
<param name="url">The URL.</param>
<returns>Stream.</returns>
</member>
<member name="M:AceQL.Client.Api.Http.HttpManager.CallWithPostAsync(System.Uri,System.Collections.Generic.Dictionary{System.String,System.String})">
<summary>
Executes a POST with parameters and returns a Stream
</summary>
<param name="theUrl">The Url.</param>
<param name="parameters">The request parameters.</param>
<returns>Stream.</returns>
<exception cref="T:System.ArgumentNullException">
action is null!
or
postParameters is null!
</exception>
</member>
<member name="M:AceQL.Client.Api.Http.HttpManager.CallWithGetAsync(System.String)">
<summary>
Calls the with get.
</summary>
<param name="url">The URL.</param>
<returns>String.</returns>
<exception cref="T:System.ArgumentNullException">url is null!</exception>
</member>
<member name="M:AceQL.Client.Api.Http.HttpManager.SetSimpleTracer(AceQL.Client.Api.Util.SimpleTracer)">
<summary>
Allowso the parent AceQLHttpApi to set the simple tracer.
</summary>
<param name="simpleTracer">The simple tracer.</param>
</member>
<member name="M:AceQL.Client.Api.Http.HttpManager.CallWithPostAsyncReturnString(System.Uri,System.Collections.Generic.Dictionary{System.String,System.String})">
<summary>
Executes a POST with parameters and returns a Srring
</summary>
<param name="theUrl">The Url.</param>
<param name="parametersMap">The request parameters.</param>
<returns>Stream.</returns>
<exception cref="T:System.ArgumentNullException">
action is null!
or
postParameters is null!
</exception>
</member>
<member name="M:AceQL.Client.Api.Http.HttpManager.Dispose">
<summary>
Disposes the HttpClient
</summary>
</member>
<member name="T:AceQL.Client.Api.Http.HttpRetryManager">
<summary>
Class HttpRetryManager. Allows to define retry options. Fist implementation is for 407 retry.
</summary>
</member>
<member name="F:AceQL.Client.Api.Http.HttpRetryManager.proxyAuthenticationCallLimit">
<summary>
The proxy authentication call limit. Defaults to one retry.
</summary>
</member>
<member name="P:AceQL.Client.Api.Http.HttpRetryManager.ProxyAuthenticationCallLimit">
<summary>
Gets or sets the proxy authentication call limit. This is the limit of retry when an HTTP call return 407
</summary>
<value>The proxy authentication call limit.</value>
</member>
<member name="T:AceQL.Client.Api.Http.UriWebProxy">
<summary>
<see cref="T:AceQL.Client.Api.Http.UriWebProxy"/>Class. Allows to create a web proxy thats interfaces an <see cref="T:System.Net.IWebProxy"/> from an URI.
</summary>
</member>
<member name="M:AceQL.Client.Api.Http.UriWebProxy.#ctor(System.Uri)">
<summary>
Builds an <see cref="T:System.Net.IWebProxy" /> concrete implementation.
</summary>
<param name="proxyUri">The proxy URI. Example: <c>new Uri("http://localhost:8080")</c>.</param>
<exception cref="T:System.ArgumentNullException">proxyUri is null!</exception>
</member>
<member name="P:AceQL.Client.Api.Http.UriWebProxy.Credentials">
<summary>
Credentials to send to the proxy server for authentication.
</summary>
<value>The credentials.</value>
</member>
<member name="M:AceQL.Client.Api.Http.UriWebProxy.GetProxy(System.Uri)">
<summary>
Specifies the protocols for authentication.
</summary>
<param name="destination">The destination.</param>
<returns>System.Uri.</returns>
</member>
<member name="M:AceQL.Client.Api.Http.UriWebProxy.IsBypassed(System.Uri)">
<summary>
Indicates that the proxy should not be used for the specified host.
</summary>
<param name="host">
<see cref="T:System.Uri" /> of the host whose proxy usage is to be verified.</param>
<returns><c>true</c> if the proxy server should not be used for <paramref name="host" />�; else <c>false</c>.</returns>
</member>
<member name="T:AceQL.Client.Api.Metadata.Dto.DatabaseInfoDto">
<summary>
Class DatabaseInfoDto.
</summary>
</member>
<member name="F:AceQL.Client.Api.Metadata.Dto.DatabaseInfoDto.status">
<summary>
The status
</summary>
</member>
<member name="M:AceQL.Client.Api.Metadata.Dto.DatabaseInfoDto.ToString">
<summary>
Returns a <see cref="T:System.String" /> that represents this instance.
</summary>
<returns>A <see cref="T:System.String" /> that represents this instance.</returns>
</member>
<member name="T:AceQL.Client.Api.Metadata.Dto.HealthCheckInfoDto">
<summary>
Class HealthCheckInfoDto.
</summary>
</member>
<member name="P:AceQL.Client.Api.Metadata.Dto.HealthCheckInfoDto.Status">
<returns> the status </returns>
</member>
<member name="P:AceQL.Client.Api.Metadata.Dto.HealthCheckInfoDto.InitMemory">
<returns> the initMemory </returns>
</member>
<member name="P:AceQL.Client.Api.Metadata.Dto.HealthCheckInfoDto.UsedMemory">
<returns> the usedMemory </returns>
</member>
<member name="P:AceQL.Client.Api.Metadata.Dto.HealthCheckInfoDto.MaxMemory">
<returns> the maxMemory </returns>
</member>
<member name="P:AceQL.Client.Api.Metadata.Dto.HealthCheckInfoDto.CommittedMemory">
<returns> the committedMemory </returns>
</member>
<member name="M:AceQL.Client.Api.Metadata.Dto.HealthCheckInfoDto.ToString">
<summary>
Returns a <see cref="T:System.String" /> that represents this instance.
</summary>
<returns>A <see cref="T:System.String" /> that represents this instance.</returns>
</member>
<member name="T:AceQL.Client.Api.Metadata.Dto.JdbcDatabaseMetaDataDto">
<summary>
Class JdbcDatabaseMetaDataDto.
</summary>
</member>
<member name="F:AceQL.Client.Api.Metadata.Dto.JdbcDatabaseMetaDataDto.jdbcDatabaseMetaData">
<summary>
The JDBC database meta data
</summary>
</member>
<member name="M:AceQL.Client.Api.Metadata.Dto.JdbcDatabaseMetaDataDto.#ctor(AceQL.Client.Api.Metadata.JdbcDatabaseMetaData)">
<summary>
Initializes a new instance of the <see cref="T:AceQL.Client.Api.Metadata.Dto.JdbcDatabaseMetaDataDto"/> class.
</summary>
<param name="jdbcDatabaseMetaData">The JDBC database meta data.</param>
</member>
<member name="P:AceQL.Client.Api.Metadata.Dto.JdbcDatabaseMetaDataDto.JdbcDatabaseMetaData">
<summary>
Gets the JDBC database meta data.
</summary>
<value>The JDBC database meta data.</value>
</member>
<member name="T:AceQL.Client.Api.Metadata.Dto.LimitsInfoDto">
<summary>
Class LimitsInfoDto.
</summary>
</member>
<member name="M:AceQL.Client.Api.Metadata.Dto.LimitsInfoDto.ToString">
<summary>
Returns a <see cref="T:System.String" /> that represents this instance.
</summary>
<returns>A <see cref="T:System.String" /> that represents this instance.</returns>
</member>
<member name="T:AceQL.Client.Api.Metadata.Dto.ServerQueryExecutorDto">
<summary>
Class ServerQueryExecutorDto.
</summary>
</member>
<member name="M:AceQL.Client.Api.Metadata.Dto.ServerQueryExecutorDto.#ctor(System.String,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String})">
<summary>
Constructor.
</summary>
<param name="serverQueryExecutorClassName"> </param>
<param name="parameterTypes"> </param>
<param name="parameterValues"> </param>
</member>
<member name="P:AceQL.Client.Api.Metadata.Dto.ServerQueryExecutorDto.serverQueryExecutorClassName">
THE PROPERTY MUST BE IN LOWERCASE FIRST CHAR FOR HOST TO DESERIALIZE.
<returns> the serverQueryExecutorClassName </returns>
</member>
<member name="P:AceQL.Client.Api.Metadata.Dto.ServerQueryExecutorDto.parameterTypes">
THE PROPERTY MUST BE IN LOWERCASE FIRST CHAR FOR HOST TO DESERIALIZE.
<returns> the parameterTypes </returns>
</member>
<member name="P:AceQL.Client.Api.Metadata.Dto.ServerQueryExecutorDto.parameterValues">
THE PROPERTY MUST BE IN LOWERCASE FIRST CHAR FOR HOST TO DESERIALIZE.
<returns> the parameterValues </returns>
</member>
<member name="M:AceQL.Client.Api.Metadata.Dto.ServerQueryExecutorDto.ToString">
<summary>
Returns a <see cref="T:System.String" /> that represents this instance.
</summary>
<returns>A <see cref="T:System.String" /> that represents this instance.</returns>
</member>
<member name="T:AceQL.Client.Api.Metadata.Dto.ServerQueryExecutorDtoBuilder">
<summary>
Class ServerQueryExecutorDtoBuilder. Builds a ServerQueryExecutorDto using the queryExecutorClassName and its parameters
</summary>
</member>
<member name="M:AceQL.Client.Api.Metadata.Dto.ServerQueryExecutorDtoBuilder.Build(System.String,System.Collections.Generic.List{System.Object})">
<summary>
Builds the specified server query executor class name.
</summary>
<param name="serverQueryExecutorClassName">Name of the server AceQL query executor class.</param>
<param name="parameters">The parameters.</param>
<returns>ServerQueryExecutorDto.</returns>
<exception cref="T:System.NotImplementedException"></exception>
</member>
<member name="T:AceQL.Client.Api.Metadata.Dto.TableDto">
<summary>
Contains the list of tables of the database.
@author Nicolas de Pomereu
</summary>
</member>
<member name="F:AceQL.Client.Api.Metadata.Dto.TableDto.status">
<summary>
The status
</summary>
</member>
<member name="F:AceQL.Client.Api.Metadata.Dto.TableDto.table">
<summary>
The table
</summary>
</member>
<member name="M:AceQL.Client.Api.Metadata.Dto.TableDto.#ctor(AceQL.Client.Api.Metadata.Table)">
<summary>
Initializes a new instance of the <see cref="T:AceQL.Client.Api.Metadata.Dto.TableDto"/> class.
</summary>
<param name="table">The table.</param>
</member>
<member name="P:AceQL.Client.Api.Metadata.Dto.TableDto.Status">
<summary>
Gets the status.
</summary>
<value>The status.</value>
</member>
<member name="P:AceQL.Client.Api.Metadata.Dto.TableDto.Table">
<summary>
Gets the table.
</summary>
<value>The table.</value>
</member>
<member name="M:AceQL.Client.Api.Metadata.Dto.TableDto.ToString">
<summary>
Returns a <see cref="T:System.String" /> that represents this instance.
</summary>
<returns>A <see cref="T:System.String" /> that represents this instance.</returns>
</member>
<member name="T:AceQL.Client.Api.Metadata.Dto.TableNamesDto">
<summary>
Contains the list of tables of the database.
@author Nicolas de Pomereu
</summary>
</member>
<member name="F:AceQL.Client.Api.Metadata.Dto.TableNamesDto.status">
<summary>
The status
</summary>
</member>
<member name="F:AceQL.Client.Api.Metadata.Dto.TableNamesDto.tableNames">
<summary>
The table names
</summary>
</member>
<member name="M:AceQL.Client.Api.Metadata.Dto.TableNamesDto.#ctor(System.Collections.Generic.List{System.String})">
<summary>
Initializes a new instance of the <see cref="T:AceQL.Client.Api.Metadata.Dto.TableNamesDto"/> class.
</summary>
<param name="tableNames">The table names.</param>
</member>
<member name="P:AceQL.Client.Api.Metadata.Dto.TableNamesDto.Status">
<summary>
Gets the status.
</summary>
<value>The status.</value>
</member>
<member name="P:AceQL.Client.Api.Metadata.Dto.TableNamesDto.TableNames">
<summary>
Gets the table names.
</summary>
<value>The table names.</value>
</member>
<member name="M:AceQL.Client.Api.Metadata.Dto.TableNamesDto.ToString">
<summary>
Returns a <see cref="T:System.String" /> that represents this instance.
</summary>
<returns>A <see cref="T:System.String" /> that represents this instance.</returns>
</member>
<member name="T:AceQL.Client.Api.Metadata.CatalogAndSchema">
<summary>
Parent of all metadata of objects: they all belong to a catalog and schema.
</summary>
</member>
<member name="P:AceQL.Client.Api.Metadata.CatalogAndSchema.Catalog">
<summary>Gets or sets the catalog.</summary>
<value>The catalog.</value>
</member>
<member name="P:AceQL.Client.Api.Metadata.CatalogAndSchema.Schema">
<summary>
Gets or sets the schema.
</summary>
<value>The schema.</value>
</member>
<member name="T:AceQL.Client.Api.Metadata.Column">
<summary>
Class Column. A SQL Column with it's defining elements.
Implements the <see cref="T:AceQL.Client.Api.Metadata.CatalogAndSchema" />
</summary>
<seealso cref="T:AceQL.Client.Api.Metadata.CatalogAndSchema" />
</member>
<member name="F:AceQL.Client.Api.Metadata.Column.columnName">
* <pre>
* <code>
databaseMetaData.getColumns(customer_auto) 1: null 1.TABLE_CAT String => table catalog (may be null)
databaseMetaData.getColumns(customer_auto) 2: public 2.TABLE_SCHEM String => table schema (may be null)
databaseMetaData.getColumns(customer_auto) 3: customer_auto 3.TABLE_NAME String => table name
databaseMetaData.getColumns(customer_auto) 4: phone 4.COLUMN_NAME String => column name
databaseMetaData.getColumns(customer_auto) 5: 12 5.DATA_TYPE int => SQL type from java.sql.Types
databaseMetaData.getColumns(customer_auto) 6: varchar 6.TYPE_NAME String => Data source dependent type name,for a UDT the type name is fu
databaseMetaData.getColumns(customer_auto) 7: 32 7.COLUMN_SIZE int => column size.
databaseMetaData.getColumns(customer_auto) 8: null 8.BUFFER_LENGTH is not used.
databaseMetaData.getColumns(customer_auto) 9: 0 9.DECIMAL_DIGITS int => the number of fractional digits. Null is returned for data
databaseMetaData.getColumns(customer_auto) 10: 10 10.NUM_PREC_RADIX int => Radix (typically either 10 or 2)
databaseMetaData.getColumns(customer_auto) 11: 1 11.NULLABLE int => is NULL allowed. â—¦ columnNoNulls - might not allow NULL values
databaseMetaData.getColumns(customer_auto) 12: null 12.REMARKS String => comment describing column (may be null)
databaseMetaData.getColumns(customer_auto) 13: null 13.COLUMN_DEF String => default value for the column, which should be interpreted as a string when the value is enclosed in single quotes (may be null)
databaseMetaData.getColumns(customer_auto) 14: null 14.SQL_DATA_TYPE int => unused
databaseMetaData.getColumns(customer_auto) 15: null 15.SQL_DATETIME_SUB int => unused
databaseMetaData.getColumns(customer_auto) 16: 32 16.CHAR_OCTET_LENGTH int => for char types themaximum number of bytes in the column
databaseMetaData.getColumns(customer_auto) 17: 8 17.ORDINAL_POSITION int => index of column in table(starting at 1)
databaseMetaData.getColumns(customer_auto) 18: YES 18.IS_NULLABLE String => ISO rules are used to determine the nullability for a column. â—¦ YES --- if the column can include NULLs
databaseMetaData.getColumns(customer_auto) 19: null 19.SCOPE_CATALOG String => catalog of table that is the scopeof a reference attribute (null if DATA_TYPE isn't REF)
databaseMetaData.getColumns(customer_auto) 20: null 20.SCOPE_SCHEMA String => schema of table that is the scopeof a reference attribute (null if the DATA_TYPE isn't REF)
databaseMetaData.getColumns(customer_auto) 21: null 21.SCOPE_TABLE String => table name that this the scopeof a reference attribute (null if the DATA_TYPE isn't REF)
databaseMetaData.getColumns(customer_auto) 22: null 22.SOURCE_DATA_TYPE short => source type of a distinct type or user-generatedRef type, SQL type from java.sql.Types (null if
databaseMetaData.getColumns(customer_auto) 23: NO 23.IS_AUTOINCREMENT String => Indicates whether this column is auto incremented â—¦ YES --- if the column is auto incremented
</code>
* </pre>
*
* !
<summary>
The column name
</summary>
</member>
<member name="F:AceQL.Client.Api.Metadata.Column.tableName">
<summary>
The table name
</summary>
</member>