Search Results for

    Show / Hide Table of Contents

    Class StringContainsCondition

    Matches when a field matching the field path string (JSON Path) changes and matches one of the specified values in ValuesToMatch

    Inheritance
    object
    BusinessRuleCondition
    StringContainsCondition
    Inherited Members
    BusinessRuleCondition.TraceRefId
    BusinessRuleCondition.Names
    BusinessRuleCondition.Description
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    [GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
    public class StringContainsCondition : BusinessRuleCondition

    Properties

    CaseSensitive

    Decide if the StringContains condition should be processed case sensitive.

    Declaration
    [JsonProperty("caseSensitive", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
    public bool CaseSensitive { get; set; }
    Property Value
    bool

    FieldPath

    JSON path to the field.

    Declaration
    [JsonProperty("fieldPath", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string FieldPath { get; set; }
    Property Value
    string

    StoreIn

    Optional variable name to store the ValueToStore in

    Declaration
    [JsonProperty("storeIn", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string StoreIn { get; set; }
    Property Value
    string

    ValueToStore

    Optional value to be stored in the variable identified by StoreIn. It can be simple value or a complex object.

    Declaration
    [JsonProperty("valueToStore", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public object ValueToStore { get; set; }
    Property Value
    object

    ValuesToMatch

    A list of string value that will checked if at least one of them is contained in the string value identified by the FieldPath.

    Declaration
    [JsonProperty("valuesToMatch", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public ICollection<string> ValuesToMatch { get; set; }
    Property Value
    ICollection<string>

    Methods

    FromJson(string)

    Declaration
    public static StringContainsCondition FromJson(string data)
    Parameters
    string data

    Returns
    StringContainsCondition

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX