RuleUpdateAction.Path 属性

定义

获取或设置 . 的路径 RuleUpdateAction

public:
 property System::String ^ Path { System::String ^ get(); void set(System::String ^ value); };
public string Path { get; set; }
member this.Path : string with get, set
Public Property Path As String

属性值

RuleUpdateAction的路径。

注解

Path 是一个字符串,表示已更改的字段或属性的名称。 “/”用作分隔符。 若要指示 this.SomeProperty 属性已修改,该属性将为“this/SomeProperty”。 可以指定更改的值,具体指定为首选值(例如,如果仅修改 this.SomeProperty/SomeOtherProperty,则可以指定“this/SomeProperty/SomeOtherProperty)。 在后一种情况下,不会重新评估使用 this.SomeProperty/AnyOtherProperty 的其他规则。

若要指定修改所有字段和属性,请将“*”追加到路径末尾。 例如,“this/SomeProperty/*”指示已修改所有字段和属性 this.SomeProperty 。 因此,将重新评估使用任何字段或属性 this.SomeProperty 的所有规则。

注释

如果规则集以设置为 /> 运行,则忽略此操作。

适用于