Class WhenOptions
Options for the When Extension methods.
Inheritance
System.Object
WhenOptions
Namespace: Cortex.Net
Assembly: Cortex.Net.dll
Syntax
public class WhenOptions : object
Properties
| Improve this Doc View SourceErrorHandler
Gets or sets error handler function that is called in case of an error. Otherwise the error is propagated.
Declaration
public Action<Exception> ErrorHandler { get; set; }
Property Value
Type | Description |
---|---|
Action<Exception> |
Name
Gets or sets then name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
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 |
TimeOut
Gets or sets the TimeOut.
Declaration
public int? TimeOut { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> |