ReportParameter
A parameter that can be passed to data source queries.
public sealed record ReportParameter : IEquatable<ReportParameter>
Constructors
ReportParameter
public ReportParameter(string Name, ParameterType Type, string Label, bool Required, string? Default)
A parameter that can be passed to data source queries.
| Parameter | Type | Description |
|---|---|---|
Name |
String |
|
Type |
ParameterType |
|
Label |
String |
|
Required |
Boolean |
|
Default |
String |
Properties
Name
public string Name { get; init; }
Type
public ParameterType Type { get; init; }
Label
public string Label { get; init; }
Required
public bool Required { get; init; }
Default
public string? Default { get; init; }