Gets or sets the path of the ImageGear service.
Syntax
| ASP.NET Ajax Javascript (Specification) | |
|---|
function get_imGearServicePath() : string
function set_imGearServicePath(value : string) |
| ASP.NET Ajax Javascript (Usage) | |
|---|
var resultVar = instanceOfImGearIsisScannerService.get_imGearServicePath(); |
Example
The JavaScript code below demonstrates how to set the ImageGear service path.
| JavaScript | Copy Code |
|---|
scannerService = new ImageGear.Web.Isis.ImGearIsisScannerService();
var url = location.href;
var servicePath = url.substring(0, url.indexOf('/', 14)) + '/' + 'ImGearIsisSample';
scannerService.set_imGearServicePath(servicePath); |
Remarks
See Also