Search Results for

    Show / Hide Table of Contents

    Class AssignValueAction

    Assign a value to all fields matching the FieldPath (JSON path).

    Inheritance
    System.Object
    BusinessRuleAction
    AssignValueAction
    Inherited Members
    BusinessRuleAction.TraceRefId
    BusinessRuleAction.Names
    BusinessRuleAction.Description
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    public class AssignValueAction : BusinessRuleAction

    Properties

    FieldId

    ID of the field, the value should be inserted in.

    Declaration
    public string FieldId { get; set; }
    Property Value
    System.String

    Path

    Path to the object the value should be inserted in.

    Declaration
    public string Path { get; set; }
    Property Value
    System.String

    Replace

    Indicates whether existing values should be replaced.
    Note: for multi fieldsets and relations, this setting controls, if the value is added
    to the already existing values or if the existing values shall be overwritten.

    Declaration
    public bool Replace { get; set; }
    Property Value
    System.Boolean

    Value

    Value to assign.

    Declaration
    public object Value { get; set; }
    Property Value
    System.Object

    Methods

    FromJson(String)

    Declaration
    public static AssignValueAction FromJson(string data)
    Parameters
    System.String data

    Returns
    AssignValueAction

    ToJson()

    Declaration
    public string ToJson()
    Returns
    System.String

    Back to top Generated by DocFX