Version: 5.3 (switch to 5.4b)
IdiomaEnglish
  • C#
  • JS

Idioma de script

Selecciona tu lenguaje de programación favorito. Todos los fragmentos de código serán mostrados en este lenguaje.

Security.PrefetchSocketPolicy

Sugiere un cambio

¡Éxito!

Gracias por ayudarnos a mejorar la calidad de la documentación de Unity. A pesar de que no podemos aceptar todas las sugerencias, leemos cada cambio propuesto por nuestros usuarios y actualizaremos los que sean aplicables.

Cerrar

No se puedo enviar

Por alguna razón su cambio sugerido no pudo ser enviado. Por favor <a>intente nuevamente</a> en unos minutos. Gracias por tomarse un tiempo para ayudarnos a mejorar la calidad de la documentación de Unity.

Cerrar

Cancelar

Cambiar al Manual
public static function PrefetchSocketPolicy(ip: string, atPort: int, timeout: int = 3000): bool;
public static bool PrefetchSocketPolicy(string ip, int atPort, int timeout = 3000);
public static function PrefetchSocketPolicy(ip: string, atPort: int, timeout: int = 3000): bool;
public static bool PrefetchSocketPolicy(string ip, int atPort, int timeout = 3000);

Parámetros

ip IP address of server.
atPort Port from where socket policy is read.
timeout Time to wait for response.

Descripción

Prefetch the webplayer socket security policy from a non-default port number.

Socket connections attempted in a webplayer need to be validated by a socket policy. When the policy is hosted on a port different than the default port number (843) it needs to be explicitly fetched with this API call before any socket connections are attempted. The timeout argument is in milliseconds.

The return value indicates if a policy was successfully retrieved or not.

See more about the webplayer security sandbox in the manual.