Skip to main content

Class AutocompleteRequest

Inheritance

↳ object

    AutocompleteRequest

Inherited Members

Equals(object)

Equals(object, object)

GetHashCode()

GetType()

MemberwiseClone()

ReferenceEquals(object, object)

ToString()

Namespace: OptimaJet.Workflow.Core.Runtime.CodeAutocomplete

Assembly: OptimaJet.Workflow.Core.dll

Syntax
public class AutocompleteRequest

Properties

Pattern

text for search (like "System.Thr")

Declaration
[JsonProperty("pattern")]
public string Pattern { get; set; }
Property value
TypeDescription
string

Usings

list of usings (like "System", "System.Threading")

Declaration
[JsonProperty("usings")]
public List<string> Usings { get; set; }
Property value
TypeDescription
List<string>

Variables

list of allow variables to autocomplete

Declaration
[JsonProperty("variables")]
public List<AutocompleteVariable> Variables { get; set; }
Property value
TypeDescription
List<AutocompleteVariable>

Id

id that will be returned in response (to working with signalR)

Declaration
[JsonProperty("id")]
public int Id { get; set; }
Property value
TypeDescription
int

Extension Methods