SenseNet.ContentRepository.ApplicationCache.GetPaths C# (CSharp) Method

GetPaths() public method

public GetPaths ( string appTypeName ) : IEnumerable
appTypeName string
return IEnumerable
        public IEnumerable<string> GetPaths(string appTypeName)
        {
            if (locked)
                return empty;
            if (ActiveSchema.NodeTypes["ApplicationCacheFile"] == null)
                return empty;

            var file = LoadCacheFile(appTypeName);
            return file.CachedData;
        }
        public void Invalidate(string appTypeName, string path)