Assembly: OptimaJet.Workflow.Core
Interface ITypeSearcher
OptimaJet.Workflow.Core.Runtime.CodeAutocomplete.ITypeSearcher
Provides access to discover and cache runtime types used by code autocomplete.
Namespace: OptimaJet.Workflow.Core.Runtime.CodeAutocomplete
public interface ITypeSearcher
Type Hierarchy
- ITypeSearcher Current type
Properties
bool Initialized { get; } #Gets a value indicating whether initialization has already been completed.
Methods
void InitIfNotInitialized() #Initializes the internal type cache if it has not been initialized yet.
Type GetByFullName(string fullName) #Gets a cached
Type by full name.
Parameters
fullName
String
Fully qualified type name, for example System.Text.StringBuilder.
Returns
Type
The
Type registered under
fullName, or
null if no match exists.
Exceptions
Gets all cached
Type instances currently known to the searcher.
Returns
Type[]
An array that contains all cached types.