mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix missing parameter comment documentation.
This commit is contained in:
Submodule Aaru.CommonTypes updated: 9e9af262bd...874a3d4bcb
@@ -57,6 +57,7 @@ namespace Aaru.Core.Devices.Dumping
|
||||
/// <param name="firmware">Firmware revision</param>
|
||||
/// <param name="isTape">Set to <c>true</c> if device is a streaming tape, <c>false</c> otherwise</param>
|
||||
/// <param name="private">Disable saving paths or serial numbers in images and logs</param>
|
||||
/// <param name="force">Force dump enabled</param>
|
||||
/// <exception cref="System.NotImplementedException">If device uses CHS addressing</exception>
|
||||
/// <exception cref="System.InvalidOperationException">
|
||||
/// If the provided resume does not correspond with the current in
|
||||
|
||||
@@ -49,6 +49,7 @@ namespace Aaru.Core
|
||||
/// <param name="imagePlugin">Media image</param>
|
||||
/// <param name="idPlugins">List of plugins recognizing the filesystem</param>
|
||||
/// <param name="partition">Partition</param>
|
||||
/// <param name="getGuid">Gets plugin GUID</param>
|
||||
public static void Identify(IMediaImage imagePlugin, out List<string> idPlugins, Partition partition,
|
||||
bool getGuid = false)
|
||||
{
|
||||
|
||||
@@ -51,6 +51,7 @@ namespace Aaru.Core
|
||||
/// <param name="plugins">Image plugins</param>
|
||||
/// <param name="imgChecksums">List of image checksums</param>
|
||||
/// <param name="sidecar">Metadata sidecar</param>
|
||||
/// <param name="encoding">Encoding to be used for filesystem plugins</param>
|
||||
static void AudioMedia(IMediaImage image, Guid filterId, string imagePath, FileInfo fi, PluginBase plugins,
|
||||
List<ChecksumType> imgChecksums, ref CICMMetadataType sidecar, Encoding encoding)
|
||||
{
|
||||
|
||||
@@ -61,6 +61,7 @@ namespace Aaru.Core
|
||||
/// <param name="plugins">Image plugins</param>
|
||||
/// <param name="imgChecksums">List of image checksums</param>
|
||||
/// <param name="sidecar">Metadata sidecar</param>
|
||||
/// <param name="encoding">Encoding to be used for filesystem plugins</param>
|
||||
void BlockMedia(IMediaImage image, Guid filterId, string imagePath, FileInfo fi, PluginBase plugins,
|
||||
List<ChecksumType> imgChecksums, ref CICMMetadataType sidecar, Encoding encoding)
|
||||
{
|
||||
|
||||
@@ -51,6 +51,7 @@ namespace Aaru.Core
|
||||
/// <param name="plugins">Image plugins</param>
|
||||
/// <param name="imgChecksums">List of image checksums</param>
|
||||
/// <param name="sidecar">Metadata sidecar</param>
|
||||
/// <param name="encoding">Encoding to be used for filesystem plugins</param>
|
||||
void LinearMedia(IMediaImage image, Guid filterId, string imagePath, FileInfo fi, PluginBase plugins,
|
||||
List<ChecksumType> imgChecksums, ref CICMMetadataType sidecar, Encoding encoding) =>
|
||||
sidecar.LinearMedia = new[]
|
||||
|
||||
@@ -61,6 +61,7 @@ namespace Aaru.Core
|
||||
/// <param name="plugins">Image plugins</param>
|
||||
/// <param name="imgChecksums">List of image checksums</param>
|
||||
/// <param name="sidecar">Metadata sidecar</param>
|
||||
/// <param name="encoding">Encoding to be used for filesystem plugins</param>
|
||||
void OpticalDisc(IOpticalMediaImage image, Guid filterId, string imagePath, FileInfo fi, PluginBase plugins,
|
||||
List<ChecksumType> imgChecksums, ref CICMMetadataType sidecar, Encoding encoding)
|
||||
{
|
||||
|
||||
@@ -111,6 +111,7 @@ namespace Aaru.Filters
|
||||
/// <param name="handle">A file handle for the file that the stream will encapsulate.</param>
|
||||
/// <param name="access">A bitwise combination of the enumeration values that determines how the file can be accessed by a <see cref="FileStream" /> object.</param>
|
||||
/// <param name="bufferSize">A positive Int32 value greater than 0 indicating the buffer size. The default buffer size is 4096.</param>
|
||||
/// <param name="isAsync">Specifies whether to use asynchronous I/O or synchronous I/O.</param>
|
||||
public void Add(SafeFileHandle handle, FileAccess access, int bufferSize, bool isAsync) =>
|
||||
Add(new FileStream(handle, access, bufferSize, isAsync));
|
||||
|
||||
@@ -180,7 +181,7 @@ namespace Aaru.Filters
|
||||
/// <param name="index">The index into <paramref name="buffer"/> at which the stream begins.</param>
|
||||
/// <param name="count">The length in bytes to add to the end of the current stream.</param>
|
||||
/// <param name="writable">The setting of the CanWrite property, currently ignored.</param>
|
||||
public void Add(byte[] buffer, int index, int count, bool writable, long start, long end) =>
|
||||
public void Add(byte[] buffer, int index, int count, bool writable) =>
|
||||
Add(new MemoryStream(buffer, index, count, writable));
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user