Method GetDeliveryStatus
GetDeliveryStatus(in RemoteContentId, ref NativeList<DeliveryStatus>)
Gets the delivery status of a remote id. This version of this method should be used when retrieving the id of a set of downloads.
Declaration
public void GetDeliveryStatus(in RemoteContentId id, ref NativeList<ContentDeliveryService.DeliveryStatus> results)
Parameters
Type | Name | Description |
---|---|---|
RemoteContentId | id | The id of the delivery request. |
NativeList<ContentDeliveryService.DeliveryStatus> | results | The results of the status inquiry. If the id refers to a set of requests, this array will contain multiple entries. |
GetDeliveryStatus(in RemoteContentId)
Gets the delivery status of a remote id. If the id refers to a single delivery, the status returned will be for that id. If it refers to a set of deliveries, the status will be aggregated to the lowest value of the set.
Declaration
public ContentDeliveryService.DeliveryStatus GetDeliveryStatus(in RemoteContentId id)
Parameters
Type | Name | Description |
---|---|---|
RemoteContentId | id | The remote content id. |
Returns
Type | Description |
---|---|
ContentDeliveryService.DeliveryStatus | The status of the delivery. |