Click or drag to resize
Grid Solutions Framework

IParameterT Interface

Represents a typed parameter with a default value.

Namespace: GrafanaAdapters.Functions
Assembly: GrafanaAdapters (in GrafanaAdapters.dll) Version: 2.4.181-beta
Syntax
public interface IParameter<T> : IParameter
View Source

Type Parameters

T
The type of the parameter.

The IParameterT type exposes the following members.

Properties
 NameDescription
Public propertyDefault Gets default typed value of the parameter.
Public propertyDescription Gets the description of the parameter.
(Inherited from IParameter)
Public propertyInternal Gets flag that indicates if parameter is internal.
(Inherited from IParameter)
Public propertyIsDefinition Gets flag that indicates if parameter is a definition.
(Inherited from IParameter)
Public propertyName Gets the name of the parameter.
(Inherited from IParameter)
Public propertyParse Gets a custom parsing function that converts string into target type.
Public propertyRequired Gets flag that indicates if the parameter is required.
(Inherited from IParameter)
Public propertyType Gets the type of the parameter.
(Inherited from IParameter)
Top
Methods
 NameDescription
Public methodCreateParameter Creates a new typed mutable parameter from its definition.
Top
See Also