暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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