Class FileIntegrityOptions
- Namespace
- Cuemon.Data.Integrity
- Assembly
- Cuemon.Data.Integrity.dll
Configuration options for FileInfo.
public class FileIntegrityOptions : FileInfoOptions, IParameterObject
- Inheritance
-
FileIntegrityOptions
- Implements
- Inherited Members
Constructors
FileIntegrityOptions()
Initializes a new instance of the FileIntegrityOptions class.
public FileIntegrityOptions()
Remarks
The following table shows the initial property values for an instance of FileIntegrityOptions.
Property | Initial Value |
---|---|
IntegrityConverter | null |
Properties
IntegrityConverter
Gets or sets the function delegate that will convert an instance of FileInfo and a byte[] into an object implementing the IDataIntegrity interface.
public Func<FileInfo, byte[], IDataIntegrity> IntegrityConverter { get; set; }
Property Value
- Func<FileInfo, Byte[], IDataIntegrity>
The function delegate that returns an object implementing the IDataIntegrity interface.
Exceptions
- ArgumentNullException
value
cannot be null.