Search Results for

    Show / Hide Table of Contents

    Class BusinessRule

    A business rule

    Inheritance
    object
    BusinessRule
    BusinessRuleConfigurable
    BusinessRuleScript
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    [JsonConverter(typeof(JsonInheritanceConverter), new object[] { "kind" })]
    [GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
    public abstract class BusinessRule

    Properties

    Description

    Language specific rule description.

    Declaration
    [JsonProperty("description", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public TranslatedStringDictionary Description { get; set; }
    Property Value
    TranslatedStringDictionary

    EnableTracing

    Enable trace logs for this rule.

    Declaration
    [JsonProperty("enableTracing", Required = Required.Always)]
    public bool EnableTracing { get; set; }
    Property Value
    bool

    Id

    User defined ID of the rule.

    Declaration
    [JsonProperty("id", Required = Required.Always)]
    [Required]
    public string Id { get; set; }
    Property Value
    string

    IsEnabled

    Enable.

    Declaration
    [JsonProperty("isEnabled", Required = Required.Always)]
    public bool IsEnabled { get; set; }
    Property Value
    bool

    Names

    Language specific rule names.

    Declaration
    [JsonProperty("names", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public TranslatedStringDictionary Names { get; set; }
    Property Value
    TranslatedStringDictionary

    TriggerPoints

    Trigger point.

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

    Methods

    FromJson(string)

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

    Returns
    BusinessRule

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX