Class DeferredQuery
Class DeferredQuery.
Namespace: Unity.Industrial.Forma.Core.Variants
Syntax
public abstract class DeferredQuery : object
Fields
id
The identifier
Declaration
public string id
Field Value
Type | Description |
---|---|
String |
Properties
Fetched
Gets or sets a value indicating whether this DeferredQuery is fetched.
Declaration
public abstract bool Fetched { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
|
Methods
Fetch(IEnumerable<QueryNode>)
Fetches the specified search scope.
Declaration
public abstract void Fetch(IEnumerable<QueryNode> searchScope = null)
Parameters
Type | Name | Description |
---|---|---|
IEnumerable<QueryNode> | searchScope | Only try to fetch queries with the current id within the given query nodes. Will search everywhere in the active scene otherwise. |