UnityEngine.Caching.MarkAsUsed C# (CSharp) Method

MarkAsUsed() public static method

public static MarkAsUsed ( string url, Hash128 hash ) : bool
url string
hash Hash128
return bool
        public static bool MarkAsUsed(string url, Hash128 hash)
        {
            return INTERNAL_CALL_MarkAsUsed(url, ref hash);
        }

Same methods

Caching::MarkAsUsed ( string url, int version ) : bool

Usage Example

コード例 #1
0
 public static bool MarkAsUsed(string url, Hash128 hash)
 {
     if (string.IsNullOrEmpty(url))
     {
         throw new ArgumentException("Input AssetBundle url cannot be null or empty.");
     }
     return(Caching.MarkAsUsed(url, "", hash));
 }
All Usage Examples Of UnityEngine.Caching::MarkAsUsed