FactSetOnDemandexecuteFactlet Method (Factlet, Boolean, Boolean, Boolean, DictionaryString, String) |
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,
Dictionary<string, string> extraUrlParams
)
Public Function executeFactlet (
f As Factlet,
suppressSummary As Boolean,
waitForResults As Boolean,
logResults As Boolean,
extraUrlParams As Dictionary(Of String, String)
) As DataFrame
public:
DataFrame^ executeFactlet(
Factlet^ f,
bool suppressSummary,
bool waitForResults,
bool logResults,
Dictionary<String^, String^>^ extraUrlParams
)
member executeFactlet :
f : Factlet *
suppressSummary : bool *
waitForResults : bool *
logResults : bool *
extraUrlParams : Dictionary<string, string> -> 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 - extraUrlParams
- Type: System.Collections.GenericDictionaryString, String
Url parameters to add to the net call, if any, for logging purposes
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