Interface IFileTransferValidator
Represents a file transfer validator.
Namespace: DNVGL.One.Compute.StorageLibrary.Azure.FileTransfer
Assembly: DNVGL.One.Compute.StorageLibrary.Azure.dll
Syntax
public interface IFileTransferValidator
Remarks
Currently only handles downloads.
Methods
View SourceIsValidDownload(String, CloudBlockBlob)
Determines whether the specified downloaded local file is validated against the source BLOB.
Declaration
bool IsValidDownload(string destPath, CloudBlockBlob sourceBlob)
Parameters
Type | Name | Description |
---|---|---|
System.String | destPath | The local file destination path. |
CloudBlockBlob | sourceBlob | The source cloud BLOB. |
Returns
Type | Description |
---|---|
System.Boolean |
|