No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }