...
The pipeline step should have the following construction:
Code Block | ||
---|---|---|
| ||
public class PipelineName : ProcessorBase<DFSMediaPipelineArgs> { public override void Process(DFSMediaPipelineArgs args) { if (args.Result.StopPipeline) { return; } if (args.Request.Download) { return; } if (args.Result.Cached) { return; } //code goes here } } |
...