Click or drag to resize
Grid Solutions Framework

ParameterDefinitionT Structure

Represents a read-only parameter definition for a Grafana function.
Inheritance Hierarchy
SystemObject
  SystemValueType
    GrafanaAdapters.FunctionsParameterDefinitionT

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

Type Parameters

T
The type of the parameter.

The ParameterDefinitionT type exposes the following members.

Properties
 NameDescription
Public propertyDefault Gets default typed value of the parameter.
Public propertyDescription Gets the description of the parameter.
Public propertyInternal Gets flag that indicates if parameter is internal.
Public propertyIsDefinition Gets flag that indicates if parameter is a definition.
Public propertyName Gets the name of the parameter.
Public propertyParse Gets a custom parsing function that converts string into target type.
Public propertyRequired Gets flag that indicates if the parameter is required.
Public propertyType Gets the type of the parameter.
Top
Methods
 NameDescription
Public methodCreateParameter Creates a new typed mutable parameter from its definition.
Public methodEqualsIndicates whether this instance and a specified object are equal.
(Inherited from ValueType)
Public methodGetHashCodeReturns the hash code for this instance.
(Inherited from ValueType)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodToStringReturns the fully qualified type name of this instance.
(Inherited from ValueType)
Top
See Also