You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Specifies the target of the HTTP Post Request of the upload job. This typically is a file on the server. For example: `job.ServerUrl = 'http://www.dynamsoft.com/ScanAndUpload/Actions/SaveToFile.aspx';`
346
+
345
347
**Syntax**
346
348
347
349
```typescript
348
-
/**
349
-
* Specifies the target of the HTTP Post Request of the upload job. This typically is a file on the server. For example: job.ServerUrl = 'http://www.dynamsoft.com/ScanAndUpload/Actions/SaveToFile.aspx';
350
-
*/
351
350
ServerUrl: string;
352
351
```
353
352
@@ -363,12 +362,11 @@ ServerUrl: string;
363
362
364
363
## HttpHeader
365
364
365
+
Specifies headers in the the HTTP Post Request of the upload job. For example: `job.HttpHeader["Content-Type"] = "text/plain";`
366
+
366
367
**Syntax**
367
368
368
369
```typescript
369
-
/**
370
-
* Specifies headers in the the HTTP Post Request of the upload job. For example: job.HttpHeader["Content-Type"] = "text/plain";
371
-
*/
372
370
HttpHeader: object;
373
371
```
374
372
@@ -388,12 +386,11 @@ By default, HttpHeader is an empty object. If left as it is, default headers are
388
386
389
387
## SourceValue
390
388
389
+
Specifies the files to be uploaded and the name for it. The files are specified by URLs which can be created with the method GenerateURLForUploadData. This object has a method Add to add file to the job.
390
+
391
391
**Syntax**
392
392
393
393
```typescript
394
-
/**
395
-
* Specifies the files to be uploaded and the name for it. The files are specified by URLs which can be created with the method GenerateURLForUploadData. This object has a method Add to add file to the job.
0 commit comments