mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-12 11:11:45 +00:00
Done FatFileSystemFactory api docs
This commit is contained in:
parent
5993b19903
commit
0a5cc370a0
1 changed files with 21 additions and 1 deletions
|
|
@ -38,7 +38,27 @@ namespace Cosmos.System.FileSystem
|
|||
/// </summary>
|
||||
/// <param name="aDevice">The partition.</param>
|
||||
/// <param name="aRootPath">The root path.</param>
|
||||
/// <exception cref="Exception">FAT signature not found.</exception>
|
||||
/// <exception cref="ArgumentNullException">
|
||||
/// <list type="bullet">
|
||||
/// <item>Thrown when aDevice is null.</item>
|
||||
/// <item>Thrown when FatFileSystem is null.</item>
|
||||
/// <item>Thrown on fatal error (contact support).</item>
|
||||
/// </list>
|
||||
/// </exception>
|
||||
/// <exception cref="ArgumentException">
|
||||
/// <list type="bullet">
|
||||
/// <item>Thrown when aRootPath is null.</item>
|
||||
/// <item>Thrown on fatal error (contact support).</item>
|
||||
/// </list>
|
||||
/// </exception>
|
||||
/// <exception cref="OverflowException">Thrown on fatal error (contact support).</exception>
|
||||
/// <exception cref="Exception">
|
||||
/// <list type="bullet">
|
||||
/// <item>Thrown on fatal error (contact support).</item>
|
||||
/// <item>>FAT signature not found.</item>
|
||||
/// </list>
|
||||
/// </exception>
|
||||
/// <exception cref="ArgumentOutOfRangeException">Thrown on fatal error (contact support).</exception>
|
||||
public override FileSystem Create(Partition aDevice, string aRootPath, long aSize) => new FatFileSystem(aDevice, aRootPath, aSize);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue