UnityEngine.Caching.IsVersionCached C# (CSharp) Метод

IsVersionCached() публичный статический Метод

public static IsVersionCached ( string url, Hash128 hash ) : bool
url string
hash Hash128
Результат 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