Class BlobTransfer
IFile
Inheritance
Implements
Namespace: EPiServer.Core.Transfer.Internal
Assembly: EPiServer.dll
Version: 12.0.3Syntax
[ServiceConfiguration]
public class BlobTransfer : Object, IFileTransfer
Constructors
BlobTransfer(IPermanentLinkMapper, IContentRepository, IBlobFactory, IImplicitContentExporter)
Initializes a new instance of the Blob
Declaration
public BlobTransfer(IPermanentLinkMapper permanentLinkMapper, IContentRepository contentRepository, IBlobFactory blobFactory, IImplicitContentExporter implicitContentExporter)
Parameters
Type | Name | Description |
---|---|---|
IPermanent |
permanentLinkMapper | |
IContent |
contentRepository | |
IBlob |
blobFactory | |
IImplicit |
implicitContentExporter |
Properties
Files
Returns a list of all files.
Declaration
public IList<IFileTransferObject> Files { get; }
Property Value
Type | Description |
---|---|
System. |
The files to be transferred. |
TransferContext
Gets or sets the transfer context.
Declaration
public IContentTransferContext TransferContext { get; set; }
Property Value
Type | Description |
---|---|
IContent |
The transfer context. |
Methods
Export()
Exports all files to IFileTransferObject instances.
Declaration
public IFileTransferObject[] Export()
Returns
Type | Description |
---|---|
IFile |
A file transfer object |
Import(IFileTransferObject)
Imports a file transfer object.
Declaration
public IFileTransferObject Import(IFileTransferObject metaData)
Parameters
Type | Name | Description |
---|---|---|
IFile |
metaData | The file transfer object to import. |
Returns
Type | Description |
---|---|
IFile |
A file transfer object, if null is returned no data is imported. |
TryAddBlob(Blob)
Adds a Blob instance to the package.
Declaration
public bool TryAddBlob(Blob blob)
Parameters
Type | Name | Description |
---|---|---|
Blob | blob | The BLOB. |
Returns
Type | Description |
---|---|
System. |
true if the blob was added else false. |
TryAddFile(String, out String)
Tries to add the file to the package.
Declaration
public bool TryAddFile(string filePath, out string addedFilePath)
Parameters
Type | Name | Description |
---|---|---|
System. |
filePath | The file path. |
System. |
addedFilePath | The added file path. |
Returns
Type | Description |
---|---|
System. |
true if the file was added else false. |