Search Results for

    Show / Hide Table of Contents

    Class MatchRegexCondition

    Matches when a field matching the field path string (JSON Path) changes and matches the given regular expression.

    Inheritance
    object
    BusinessRuleCondition
    MatchRegexCondition
    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 MatchRegexCondition : BusinessRuleCondition

    Properties

    FieldPath

    JSON path to the field

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

    Regex

    Regular expression

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

    StoreIn

    Optional variable name to store the matched regex groups in

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

    Methods

    FromJson(string)

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

    Returns
    MatchRegexCondition

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX