POST api/Action/ProcessChunkFile

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ProcessFileTransferChunkFileVM
NameDescriptionTypeAdditional information
ChunkFilePath

string

None.

ChunkFileName

string

None.

TotalChunkSegmentIndex

integer

None.

FinalFileName

string

None.

FileExtension

string

None.

ToBeMovePath

string

None.

OriFileMD5

string

None.

IsMerge

boolean

None.

IsMove

boolean

None.

Message

string

None.

Response Formats

application/json, text/json

Sample:
{
  "ChunkFilePath": "sample string 1",
  "ChunkFileName": "sample string 2",
  "TotalChunkSegmentIndex": 3,
  "FinalFileName": "sample string 4",
  "FileExtension": "sample string 5",
  "ToBeMovePath": "sample string 6",
  "OriFileMD5": "sample string 7",
  "IsMerge": true,
  "IsMove": true,
  "Message": "sample string 10"
}

text/xml

Sample:
<ProcessFileTransferChunkFileVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FFCCP_FileTransfer.ViewModel">
  <ChunkFileName>sample string 2</ChunkFileName>
  <ChunkFilePath>sample string 1</ChunkFilePath>
  <FileExtension>sample string 5</FileExtension>
  <FinalFileName>sample string 4</FinalFileName>
  <IsMerge>true</IsMerge>
  <IsMove>true</IsMove>
  <Message>sample string 10</Message>
  <OriFileMD5>sample string 7</OriFileMD5>
  <ToBeMovePath>sample string 6</ToBeMovePath>
  <TotalChunkSegmentIndex>3</TotalChunkSegmentIndex>
</ProcessFileTransferChunkFileVM>