설명 없음
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.

UniWebViewChannelMethodHandleRequest.cs 1.2KB

123456789101112131415161718192021222324252627282930313233
  1. //
  2. // UniWebViewChannelMethodHandleRequest.cs
  3. // Created by Wang Wei(@onevcat) on 2023-04-21.
  4. //
  5. // This file is a part of UniWebView Project (https://uniwebview.com)
  6. // By purchasing the asset, you are allowed to use this code in as many as projects
  7. // you want, only if you publish the final products under the name of the same account
  8. // used for the purchase.
  9. //
  10. // This asset and all corresponding files (such as source code) are provided on an
  11. // “as is” basis, without warranty of any kind, express of implied, including but not
  12. // limited to the warranties of merchantability, fitness for a particular purpose, and
  13. // noninfringement. In no event shall the authors or copyright holders be liable for any
  14. // claim, damages or other liability, whether in action of contract, tort or otherwise,
  15. // arising from, out of or in connection with the software or the use of other dealing in the software.
  16. //
  17. using System;
  18. using UnityEngine;
  19. /// <summary>
  20. /// Represents the request of a loading used in request handler.
  21. /// </summary>
  22. [Serializable]
  23. public class UniWebViewChannelMethodHandleRequest {
  24. [SerializeField]
  25. private string url;
  26. /// <summary>
  27. /// The URL of the request.
  28. /// </summary>
  29. public string Url => url;
  30. }