Search Results for

    Show / Hide Table of Contents

    Class BusinessRuleConfigurable

    A business rule configurable by specific actions and conditions

    Inheritance
    object
    BusinessRule
    BusinessRuleConfigurable
    Inherited Members
    BusinessRule.Id
    BusinessRule.TriggerPoints
    BusinessRule.IsEnabled
    BusinessRule.Names
    BusinessRule.Description
    BusinessRule.EnableTracing
    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 BusinessRuleConfigurable : BusinessRule

    Properties

    Actions

    The actions that are performed when this rule triggers.

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

    Condition

    The condition that makes this rule trigger.

    Declaration
    [JsonProperty("condition", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public BusinessRuleCondition Condition { get; set; }
    Property Value
    BusinessRuleCondition

    TransformationGroups

    Optional transformations to apply.

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

    Methods

    FromJson(string)

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

    Returns
    BusinessRuleConfigurable

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX