[HA] Implement Identify and GetInformation.

This commit is contained in:
2025-09-07 13:28:54 +01:00
parent fa12cc60b9
commit 296a7a88f8
9 changed files with 153 additions and 10 deletions

View File

@@ -12,9 +12,6 @@ public sealed partial class Ha
{
#region IArchive Members
/// <inheritdoc />
public bool Identify(IFilter filter) => throw new NotImplementedException();
/// <inheritdoc />
public ErrorNumber Open(IFilter filter, Encoding encoding) => throw new NotImplementedException();
@@ -54,11 +51,5 @@ public sealed partial class Ha
/// <inheritdoc />
public ErrorNumber GetEntry(int entryNumber, out IFilter filter) => throw new NotImplementedException();
/// <inheritdoc />
public void GetInformation(IFilter filter, Encoding encoding, out string information)
{
throw new NotImplementedException();
}
#endregion
}