FactSetOnDemandexecuteFactlet Method (Factlet, Boolean, Boolean, Boolean) |
Execute a factlet
Namespace:
Kratos_3.RunTimePlatform
Assembly:
Kratos_3 (in Kratos_3.dll) Version: 3.6.2.0 (3.6.2.0)
Syntaxpublic DataFrame executeFactlet(
Factlet f,
bool suppressSummary,
bool waitForResults,
bool logResults
)
Public Function executeFactlet (
f As Factlet,
suppressSummary As Boolean,
waitForResults As Boolean,
logResults As Boolean
) As DataFrame
public:
DataFrame^ executeFactlet(
Factlet^ f,
bool suppressSummary,
bool waitForResults,
bool logResults
)
member executeFactlet :
f : Factlet *
suppressSummary : bool *
waitForResults : bool *
logResults : bool -> DataFrame
Parameters
- f
- Type: Kratos_3.NetworkFactlet
Factlet to execute - suppressSummary
- Type: SystemBoolean
Whether or not to create a summary description for the factlet - waitForResults
- Type: SystemBoolean
Whether or not to wait for results before returning the dataframe. - logResults
- Type: SystemBoolean
Whether or not to create a second factlet for logging results
Return Value
Type:
DataFrameDataframe. If waitForResults is set to false and waitUntilDone mode is off, dataframe should not be accessed until isDone parameter in DataFrame is set to true
See Also