Table of Contents

Class FeedFileExportScheduledTaskAddIn

Namespace
Dynamicweb.Ecommerce.Feeds.ScheduledTaskAddIns
Assembly
Dynamicweb.Ecommerce.dll
[AddInName("Dynamicweb.Scheduling.Providers.FeedFileExportTaskAddIn")]
[AddInLabel("Feed File Export Task")]
[AddInDescription("The scheduled task used for exporting the output from a feed to a file")]
public class FeedFileExportScheduledTaskAddIn : BaseScheduledTaskAddIn, IParameterOptions
Inheritance
FeedFileExportScheduledTaskAddIn
Implements
Inherited Members

Properties

Currency

[AddInParameter("Currency")]
[AddInParameterEditor(typeof(DropDownParameterEditor), "inputClass=inputControl")]
public string? Currency { get; set; }

Property Value

string

FeedId

[AddInParameter("Feed")]
[AddInParameterEditor(typeof(DropDownParameterEditor), "inputClass=inputControl")]
public int FeedId { get; set; }

Property Value

int

FileDestination

[AddInParameter("File destination")]
[AddInParameterEditor(typeof(FolderSelectEditor), "inputClass=inputControl")]
public string? FileDestination { get; set; }

Property Value

string

FileName

[AddInParameter("File Name")]
[AddInParameterEditor(typeof(TextParameterEditor), "inputClass=inputControl")]
public string? FileName { get; set; }

Property Value

string

Language

[AddInParameter("Language")]
[AddInParameterEditor(typeof(DropDownParameterEditor), "inputClass=inputControl")]
public string? Language { get; set; }

Property Value

string

Methods

Run()

Runs this provider.

public override bool Run()

Returns

bool
To top