共用方式為


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 上任何欄位或屬性的規則都會重新經過評估。

注意

如果規則集是以設定為 ChainingBehaviorNone 執行,則會忽略這個動作。

適用於