Compiler
Summary
Provides access to compiler for algos.
Signature
1 | |
Namespace
cAlgo.API
Examples
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | |
Methods
Compile (2)
Compile (1 of 2)
Summary
Compiles an algo.
Signature
1 | |
Parameters
| Name | Type | Description |
|---|---|---|
| csprojFilePath | string | Algo project file path. |
Return Value
CompilationResult
Compile (2 of 2)
Summary
Compiles an algo.
Signature
1 | |
Parameters
| Name | Type | Description |
|---|---|---|
| csprojFilePath | string | Algo project file path. |
| options | CompilationOptions | Compilation options. |
Return Value
CompilationResult
CompileAsync (2)
CompileAsync (1 of 2)
Summary
Compiles an algo asynchronously and calls the passed callback when compilation finishes.
Signature
1 | |
Parameters
| Name | Type | Description |
|---|---|---|
| csprojFilePath | string | Algo project file path. |
| callback | Action | Callback that will be called after compilation finished. |
Return Value
CompilationOperation
CompileAsync (2 of 2)
Summary
Compiles an algo asynchronously and calls the passed callback when compilation finishes.
Signature
1 | |
Parameters
| Name | Type | Description |
|---|---|---|
| csprojFilePath | string | Algo project file path. |
| callback | Action | Callback that will be called after compilation finished. |
| options | CompilationOptions | Compilation options. |
Return Value
CompilationOperation