  | RecordReuseMode Enumeration | 
            The way the record reuse attribute is applied to tasks that are generated from a
            delegate function by the 
JobBuilder.
            
 Namespace: Ookii.Jumbo.Jet.Jobs.BuilderAssembly: Ookii.Jumbo.Jet (in Ookii.Jumbo.Jet.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxpublic enum RecordReuseMode
Public Enumeration RecordReuseMode
public enum class RecordReuseMode
Members| Member name | Value | Description | 
|---|
| Default | 0 | 
            The record reuse attribute is copied from the delegate's target method.
             | 
| DoNotAllow | 1 | 
            The record reuse attribute is never applied.
             | 
| Allow | 2 | 
            The record reuse attribute is always applied, with PassThrough set to .
             | 
| PassThrough | 3 | 
            The record reuse attribute is always applied, with PassThrough set to .
             | 
Remarks
              This allows you to specify the record reuse mode when using an anonymous delegate or lambda as
              the target method.
            
See Also