Aucune description
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

IWebRequest.cs 699B

12345678910111213141516171819202122
  1. using System;
  2. using UnityEngine.Networking;
  3. namespace UnityEditor.Purchasing
  4. {
  5. /// <summary>
  6. /// This is an internal API.
  7. /// We recommend that you do not use it as it will be removed in a future release.
  8. /// </summary>
  9. [Obsolete("Internal API, it will be removed soon.")]
  10. public interface IWebRequest
  11. {
  12. /// <summary>
  13. /// This is an internal API.
  14. /// We recommend that you do not use it as it will be removed in a future release.
  15. /// </summary>
  16. /// <param name="uri"></param>
  17. /// <returns></returns>
  18. [Obsolete("Internal API, it will be removed soon.")]
  19. UnityWebRequest BuildWebRequest(string uri);
  20. }
  21. }