UnityEngine.Caching.IsVersionCached C# (CSharp) Method

IsVersionCached() public static method

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

Same methods

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

Usage Example

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