Show / Hide Table of Contents

Class AutorunOptions

Specifies the options for an Autorun instance.

Inheritance
System.Object
AutorunOptions
ReactionOptions<T>
Namespace: Cortex.Net
Assembly: Cortex.Net.dll
Syntax
public class AutorunOptions : object

Properties

| Improve this Doc View Source

Context

Gets or sets the context.

Declaration
public object Context { get; set; }
Property Value
Type Description
System.Object
| Improve this Doc View Source

Delay

Gets or sets the delay in miliseconds.

Declaration
public int Delay { get; set; }
Property Value
Type Description
System.Int32
| Improve this Doc View Source

ErrorHandler

Gets or sets error handler function that is called in case of an error. Otherwise the error is propagated.

Declaration
public Action<Reaction, Exception> ErrorHandler { get; set; }
Property Value
Type Description
Action<Reaction, Exception>
| Improve this Doc View Source

Name

Gets or sets the name.

Declaration
public string Name { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

RequiresObservable

Gets or sets a value indicating whether observables are required in the view function.

Declaration
public bool RequiresObservable { get; set; }
Property Value
Type Description
System.Boolean
| Improve this Doc View Source

Scheduler

Gets or sets the scheduler function to use. The function is async so that other code can be executed in the mean time.

Declaration
public Func<Task> Scheduler { get; set; }
Property Value
Type Description
Func<Task>

Extension Methods

TraceExtensions.Trace<TObject, TMember>(TObject, Expression<Func<TObject, TMember>>, TraceMode)
ReactiveObjectTypeUtilExtensions.GetObservable(Object)
ReactiveObjectTypeUtilExtensions.GetObservable<TObject, TMember>(TObject, Expression<Func<TObject, TMember>>)
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX