Options for allowing plain text HTTP connections for Networking.UnityWebRequest.
Plain text HTTP connections are not secure, and can make your application vulnerable to security threats. By default, Networking.UnityWebRequest uses secure HTTPS connections instead.
Use this enum to configure when Networking.UnityWebRequest is allowed to use HTTP plain text connections.
| Property | Description |
|---|---|
| NotAllowed | Do not allow Networking.UnityWebRequest to use plain text HTTP connections. |
| DevelopmentOnly | Allow Networking.UnityWebRequest to use plain text HTTP connections in development builds only. |
| AlwaysAllowed | Allow Networking.UnityWebRequest to use plain text HTTP connections at all times. |