Click or drag to resize
Grid Solutions Framework

ParametersParsedCount Property

Gets or sets the number of parameters that have been parsed.

Namespace: GrafanaAdapters.Functions
Assembly: GrafanaAdapters (in GrafanaAdapters.dll) Version: 2.4.182-beta
Syntax
public int ParsedCount { get; set; }
View Source

Property Value

Int32
Remarks
The number of parameters in defined in the Parameters collection will always match the number of parameters defined in the function definition, optional or not, see ParameterDefinitions. This property is used to determine the count of required and optional parameters that were actually parsed from the user provided function expression. Note that the count does not include the data source values expression, which is always available as the last parameter. With this count, the function can determine which optional parameters were parsed and are thus available for use.
See Also