BackgroundTransferOperation

DesktopOperating SystemUWPWin32Windows

Properties

Name Type Description
id string
uri string
destinationFile string
status string
progress object
View JSON Schema on GitHub

JSON Schema

microsoft-windows-10-backgroundtransferoperation-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/BackgroundTransferOperation",
  "title": "BackgroundTransferOperation",
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "uri": {
      "type": "string",
      "format": "uri"
    },
    "destinationFile": {
      "type": "string"
    },
    "status": {
      "type": "string",
      "enum": [
        "Idle",
        "Running",
        "PausedByApplication",
        "PausedCostedNetwork",
        "PausedNoNetwork",
        "Completed",
        "Canceled",
        "Error"
      ]
    },
    "progress": {
      "type": "object",
      "properties": {
        "bytesReceived": {
          "type": "integer",
          "format": "int64"
        },
        "totalBytesToReceive": {
          "type": "integer",
          "format": "int64"
        }
      }
    }
  }
}