POST api/ImageBrowser/Load
Request Information
URI Parameters
None.
Body Parameters
ModelImageResizer| Name | Description | Type | Additional information |
|---|---|---|---|
| FileName | string |
None. |
|
| Width | integer |
None. |
|
| Height | integer |
None. |
|
| IsZoom | boolean |
None. |
|
| IsCompress | boolean |
None. |
|
| HaveMark | boolean |
None. |
|
| IsTranparent | boolean |
None. |
Request Formats
application/json, text/json
Sample:
{
"FileName": "sample string 1",
"Width": 2,
"Height": 3,
"IsZoom": true,
"IsCompress": true,
"HaveMark": true,
"IsTranparent": true
}
application/xml, text/xml
Sample:
<ModelImageResizer xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ArNikAPI.App_Start"> <FileName>sample string 1</FileName> <HaveMark>true</HaveMark> <Height>3</Height> <IsCompress>true</IsCompress> <IsTranparent>true</IsTranparent> <IsZoom>true</IsZoom> <Width>2</Width> </ModelImageResizer>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.