Table of Contents

Class DeleteFileMediaWebFarmTask

Namespace
CMS.MediaLibrary
Assembly
CMS.MediaLibrary.dll

Web farm task used to delete media files.

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

Constructors

DeleteFileMediaWebFarmTask()

Initializes a new instance of DeleteFileMediaWebFarmTask.

public DeleteFileMediaWebFarmTask()

Properties

ApplyOnlyOnFiles

Gets or sets a value that indicates if media deletion will be executed only on files.

public bool ApplyOnlyOnFiles { get; set; }

Property Value

bool

DestinationLibraryId

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

public int DestinationLibraryId { get; set; }

Property Value

int

DestinationPath

Gets or sets relative path where file will be deleted.

public string DestinationPath { get; set; }

Property Value

string

Methods

ConditionMethod()

Returns true whether the synchronization for deleting 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 DeleteMediaFile(int, string, bool, bool) method while passing it current class' properties as its parameters.

public override void ExecuteTask()

See Also