GET api/image/listfile?Start={Start}&Size={Size}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
Start

integer

Required

Size

integer

Required

Body Parameters

None.

Response Information

Resource Description

ResultsPageOfString[]
NameDescriptionTypeAdditional information
PageIndex

integer

None.

PageSize

integer

None.

TotlCount

integer

None.

TotlPageCount

integer

None.

Success

boolean

None.

Code

integer

None.

Msg

string

None.

Value

Collection of string

None.

Response Formats

application/json, text/json

Sample:
{
  "PageIndex": 1,
  "PageSize": 2,
  "TotlCount": 3,
  "TotlPageCount": 4,
  "Success": true,
  "Code": 6,
  "Msg": "sample string 7",
  "Value": [
    "sample string 1",
    "sample string 2"
  ]
}

application/xml, text/xml

Sample:
<ResultsPageOfArrayOfstringuHEDJ7Dj xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ImageApi">
  <Code>6</Code>
  <Msg>sample string 7</Msg>
  <Success>true</Success>
  <Value xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:string>sample string 1</d2p1:string>
    <d2p1:string>sample string 2</d2p1:string>
  </Value>
  <PageIndex>1</PageIndex>
  <PageSize>2</PageSize>
  <TotlCount>3</TotlCount>
  <TotlPageCount>4</TotlPageCount>
</ResultsPageOfArrayOfstringuHEDJ7Dj>