LayoutFarm.ContentManagers.ImageCacheSystem.TryGetCacheImage C# (CSharp) Méthode

TryGetCacheImage() public méthode

public TryGetCacheImage ( string url, Image &img ) : bool
url string
img Image
Résultat bool
        public bool TryGetCacheImage(string url, out Image img)
        {
            return cacheImages.TryGetValue(url, out img);
        }
        public void AddCacheImage(string url, Image img)