uploadProgress
Returns a floating-point value between 0.0 and 1.0, indicating the progress of uploading body data to the server.
Read time 1 minuteLast updated 6 days ago
Definition
- Type: Property
- Namespace: UnityEngine.Networking
- Assembly: UnityEngine.UnityWebRequestModule
public float uploadProgress { get; }
Remarks
If the UnityWebRequest is complete (either a success or a system error), this property will always return 1. If the UnityWebRequest is still communicating with the remote server, and _uploadHandler is , this property will return zero. If UnityWebRequest.Send has not yet been called, this property will return -1.
null