< Summary

Information
Class: Elsa.Workflows.Models.InputDescriptor
Assembly: Elsa.Workflows.Core
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Core/Models/InputDescriptor.cs
Line coverage
98%
Covered lines: 57
Uncovered lines: 1
Coverable lines: 58
Total lines: 120
Line coverage: 98.2%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
.ctor()100%11100%
.ctor(...)100%11100%
get_IsWrapped()100%11100%
get_UIHint()100%11100%
get_Category()100%11100%
get_DefaultValue()100%11100%
get_DefaultSyntax()100%11100%
get_IsReadOnly()100%11100%
get_IsSensitive()100%210%
get_StorageDriverType()100%11100%
get_AutoEvaluate()100%11100%
get_EvaluatorType()100%11100%
get_UISpecifications()100%11100%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Core/Models/InputDescriptor.cs

#LineLine coverage
 1using System.Reflection;
 2
 3namespace Elsa.Workflows.Models;
 4
 5/// <summary>
 6/// A descriptor of an activity's input property.
 7/// </summary>
 8public class InputDescriptor : PropertyDescriptor
 9{
 10    /// <inheritdoc />
 6411    public InputDescriptor()
 12    {
 6413    }
 14
 15    /// <inheritdoc />
 1733716    public InputDescriptor(
 1733717        string name,
 1733718        Type type,
 1733719        Func<IActivity, object?> valueGetter,
 1733720        Action<IActivity, object?> valueSetter,
 1733721        bool isWrapped,
 1733722        string uiHint,
 1733723        string displayName,
 1733724        string? description = null,
 1733725        string? category = null,
 1733726        float order = 0,
 1733727        object? defaultValue = null,
 1733728        string? defaultSyntax = "Literal",
 1733729        bool isReadOnly = false,
 1733730        bool isBrowsable = true,
 1733731        bool isSerializable = true,
 1733732        bool isSynthetic = false,
 1733733        bool autoEvaluate = true,
 1733734        Type? evaluatorType = null,
 1733735        Type? storageDriverType = null,
 1733736        PropertyInfo? propertyInfo = null,
 1733737        IDictionary<string, object>? uiSpecifications = null
 1733738    )
 39    {
 1733740        Name = name;
 1733741        Type = type;
 1733742        ValueGetter = valueGetter;
 1733743        ValueSetter = valueSetter;
 1733744        IsWrapped = isWrapped;
 1733745        UIHint = uiHint;
 1733746        DisplayName = displayName;
 1733747        Description = description;
 1733748        Category = category;
 1733749        Order = order;
 1733750        DefaultValue = defaultValue;
 1733751        DefaultSyntax = defaultSyntax;
 1733752        IsReadOnly = isReadOnly;
 1733753        AutoEvaluate = autoEvaluate;
 1733754        EvaluatorType = evaluatorType;
 1733755        StorageDriverType = storageDriverType;
 1733756        IsSynthetic = isSynthetic;
 1733757        IsBrowsable = isBrowsable;
 1733758        IsSerializable = isSerializable;
 1733759        PropertyInfo = propertyInfo;
 1733760        UISpecifications = uiSpecifications;
 1733761    }
 62
 63    /// <summary>
 64    /// True if the property is wrapped with an <see cref="Input{T}"/> type, false otherwise.
 65    /// </summary>
 3916466    public bool IsWrapped { get; set; }
 67
 68    /// <summary>
 69    /// A string value that hints at what UI control might be used to render in a UI tool.
 70    /// </summary>
 3354471    public string UIHint { get; set; } = null!;
 72
 73    /// <summary>
 74    /// The category to which this input belongs. Can be used by UI to e.g. render different inputs in different tabs.
 75    /// </summary>
 1740176    public string? Category { get; set; }
 77
 78    /// <summary>
 79    /// The default value.
 80    /// </summary>
 2260881    public object? DefaultValue { get; set; }
 82
 83    /// <summary>
 84    /// The default syntax.
 85    /// </summary>
 1733786    public string? DefaultSyntax { get; set; }
 87
 88    /// <summary>
 89    /// True if the input is readonly, false otherwise.
 90    /// </summary>
 1733791    public bool? IsReadOnly { get; set; }
 92
 93    /// <summary>
 94    /// Gets or sets a value indicating whether this input can contain secrets.
 95    /// When set to true, the input will be treated as a secret and will be encrypted, masked or otherwise protected, de
 96    /// </summary>
 097    public bool IsSensitive { get; set; }
 98
 99    /// <summary>
 100    /// The storage driver type to use for persistence.
 101    /// If no driver is specified, the referenced memory block will remain in memory for as long as the expression execu
 102    /// </summary>
 17417103    public Type? StorageDriverType { get; set; }
 104
 105    /// <summary>
 106    /// True if the expression should be evaluated automatically, false otherwise. Defaults to true.
 107    /// </summary>
 40222108    public bool AutoEvaluate { get; set; } = true;
 109
 110    /// <summary>
 111    /// Specifies the type of a custom evaluator to use for evaluating the input property value.
 112    /// The evaluator type determines how the value for the property is resolved at runtime.
 113    /// </summary>
 21675114    public Type? EvaluatorType { get; set; }
 115
 116    /// <summary>
 117    /// A dictionary of UI specifications to be used by the UI.
 118    /// </summary>
 17337119    public IDictionary<string, object>? UISpecifications { get; set; }
 120}