GetAllEntries() public abstract method

public abstract GetAllEntries ( ) : RootEntry>>.IEnumerable
return RootEntry>>.IEnumerable
Ejemplo n.º 1
0
 public override bool FileExists(ulong hash) => RootHandler.GetAllEntries(hash).Any();
Ejemplo n.º 2
0
        public bool FileExists(ulong hash)
        {
            var rootInfos = RootHandler.GetAllEntries(hash);

            return(rootInfos != null && rootInfos.Any());
        }