Class DataSourceArgs
Arguments to be used for dataSource evaluations
Inherited Members
Namespace: Quantellia.WMServer.Asset.DataSource
Assembly: WMServer.dll
Syntax
public class DataSourceArgs
Properties
Action
How queried data should be returned. Must be string values in DataSourceArgs.ActionSpecifiers
Declaration
public string Action { get; set; }
Property Value
Type | Description |
---|---|
string |
Format
Sepecify the format in which the results should be returned. Options are JSON or CSV.
Declaration
public string Format { get; set; }
Property Value
Type | Description |
---|---|
string |
QueryParameters
Parameters to be used in the query evaluation
Declaration
public Dictionary<string, object> QueryParameters { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, object> |
SourceString
The query to be performed on the data source.
Declaration
public string SourceString { get; set; }
Property Value
Type | Description |
---|---|
string |