Interface ICodeAutocompleter
Namespace: OptimaJet.Workflow.Core.Runtime.CodeAutocomplete
Assembly: OptimaJet.Workflow.Core.dll
Syntaxpublic interface ICodeAutocompleter
Methods
Get(string, IEnumerable<string>, IEnumerable<AutocompleteVariable>)
Get autocomplete from all autocompleters that yet initialized
DeclarationHashSet<AutocompleteItem> Get(string pattern, IEnumerable<string> usings, IEnumerable<AutocompleteVariable> variables)
| Type | Name | Description |
|---|---|---|
| string | pattern | text for search (like "System.Thr") |
| IEnumerable<string> | usings | list of usings (like "System", "System.Threading") |
| IEnumerable<AutocompleteVariable> | variables | list of allow variables to autocomplete |
| Type | Description |
|---|---|
| HashSet<AutocompleteItem> |
InitIfNotInitialized()
Declarationvoid InitIfNotInitialized()
AddVariables(IEnumerable<AutocompleteVariable>)
Declarationvoid AddVariables(IEnumerable<AutocompleteVariable> variables)
| Type | Name | Description |
|---|---|---|
| IEnumerable<AutocompleteVariable> | variables |