Table of Contents

Class MoveFileMediaWebFarmTask

Namespace
CMS.MediaLibrary
Assembly
CMS.MediaLibrary.dll

Web farm task used to move media files.

public class MoveFileMediaWebFarmTask : WebFarmTaskBase
Inheritance
object
MoveFileMediaWebFarmTask
Inherited Members
Extension Methods

Constructors

MoveFileMediaWebFarmTask()

Initializes a new instance of MoveFileMediaWebFarmTask

public MoveFileMediaWebFarmTask()

Properties

DestinationLibraryId

Gets or sets identifier of the library where file will be moved.

public int DestinationLibraryId { get; set; }

Property Value

int

DestinationPath

Gets or sets relative path where file will be moved.

public string DestinationPath { get; set; }

Property Value

string

SourceLibraryId

Gets or sets identifier of the library from where file will be moved.

public int SourceLibraryId { get; set; }

Property Value

int

SourcePath

Gets or sets relative path from where file will be moved.

public string SourcePath { get; set; }

Property Value

string

Methods

ConditionMethod()

Returns true whether the synchronization for moving media files is allowed and provided storage is not shared.

public override bool ConditionMethod()

Returns

bool

ExecuteTask()

Processes the web farm task by invoking the MoveMediaFile(int, int, string, string, bool) method while passing it current class' properties as its parameters.

public override void ExecuteTask()

See Also