Add XML comments to public entities.

This commit is contained in:
2021-08-17 13:56:05 +01:00
parent 0d18153610
commit 00f605b0ca
542 changed files with 6029 additions and 104 deletions

View File

@@ -38,6 +38,7 @@ namespace Aaru.Filesystems
{
public sealed partial class CPM
{
/// <inheritdoc />
public Errno GetAttributes(string path, out FileAttributes attributes)
{
attributes = new FileAttributes();
@@ -71,6 +72,7 @@ namespace Aaru.Filesystems
}
// TODO: Implementing this would require storing the interleaving
/// <inheritdoc />
public Errno MapBlock(string path, long fileBlock, out long deviceBlock)
{
deviceBlock = 0;
@@ -78,6 +80,7 @@ namespace Aaru.Filesystems
return !_mounted ? Errno.AccessDenied : Errno.NotImplemented;
}
/// <inheritdoc />
public Errno Read(string path, long offset, long size, ref byte[] buf)
{
if(!_mounted)
@@ -116,6 +119,7 @@ namespace Aaru.Filesystems
return Errno.NoError;
}
/// <inheritdoc />
public Errno ReadLink(string path, out string dest)
{
dest = null;
@@ -123,6 +127,7 @@ namespace Aaru.Filesystems
return !_mounted ? Errno.AccessDenied : Errno.NotSupported;
}
/// <inheritdoc />
public Errno Stat(string path, out FileEntryInfo stat)
{
stat = null;