small refactor

This commit is contained in:
vpenades
2022-12-05 22:36:18 +01:00
parent 37c7251ec9
commit 17dab3df34

View File

@@ -23,16 +23,16 @@ namespace SharpCompress.Factories
/// </summary>
string Name { get; }
/// <summary>
/// Gets the archive Type in case it is a well known archive format.
/// </summary>
Common.ArchiveType? KnownArchiveType { get; }
/// <summary>
/// returns the extensions typically used by this archive type.
/// </summary>
/// <returns></returns>
IEnumerable<string> GetSupportedExtensions();
/// <summary>
/// returns the archive type in case it is a well known archive.
/// </summary>
Common.ArchiveType? KnownArchiveType { get; }
IEnumerable<string> GetSupportedExtensions();
/// <summary>
/// Returns true if the stream represents an archive of the format defined by this type.