Ejemplo n.º 1
0
 /// <summary>
 ///  A COM-friendly wrapper for the static method <see cref="ZipFile.CheckZipPassword(string,string)"/>.
 /// </summary>
 ///
 /// <param name="filename">The filename to of the zip file to check.</param>
 ///
 /// <param name="password">The password to check.</param>
 ///
 /// <returns>true if the named zip file checks OK. Otherwise, false. </returns>
 public bool CheckZipPassword(string filename, string password)
 {
     return(ZipFile.CheckZipPassword(filename, password));
 }