Ionic.Zip.ZipOutputStream.ContainsEntry C# (CSharp) Метод

ContainsEntry() публичный Метод

Returns true if an entry by the given name has already been written to the ZipOutputStream.
public ContainsEntry ( string name ) : bool
name string /// The name of the entry to scan for. ///
Результат bool
        public bool ContainsEntry(string name)
        {
            return _entriesWritten.ContainsKey(SharedUtilities.NormalizePathForUseInZipFile(name));
        }