Ionic.Zip.ZipOutputStream.ContainsEntry C# (CSharp) Method

ContainsEntry() public method

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. ///
return bool
        public bool ContainsEntry(string name)
        {
            return _entriesWritten.ContainsKey(SharedUtilities.NormalizePathForUseInZipFile(name));
        }