RuleUpdateAction 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 RuleUpdateAction 類別的新執行個體。
多載
RuleUpdateAction() |
初始化 RuleUpdateAction 類別的新執行個體。 |
RuleUpdateAction(String) |
初始化 RuleUpdateAction 類別的新執行個體。 |
RuleUpdateAction()
初始化 RuleUpdateAction 類別的新執行個體。
public:
RuleUpdateAction();
public RuleUpdateAction ();
Public Sub New ()
適用於
RuleUpdateAction(String)
初始化 RuleUpdateAction 類別的新執行個體。
public:
RuleUpdateAction(System::String ^ path);
public RuleUpdateAction (string path);
new System.Workflow.Activities.Rules.RuleUpdateAction : string -> System.Workflow.Activities.Rules.RuleUpdateAction
Public Sub New (path As String)
參數
- path
- String
字串,代表已變更欄位或屬性的名稱。 字元 "/" 會用來當做分隔符號。
備註
若要表示 this.SomeProperty
屬性已修改,則 path
參數應為 this/SomeProperty
。 您可以依照喜歡的精細程度,指定變更的值 (例如,如果您只修改 this.SomeProperty/SomeOtherProperty
,則可以指定 this/SomeProperty/SomeOtherProperty
)。 以第二種情況而言,不會重新評估其他使用 this.SomeProperty/AnyOtherProperty
的規則。
若要指定修改所有欄位和屬性,請在路徑結尾附加 "*"。 例如,this/SomeProperty/*
表示 this.SomeProperty
上的所有欄位和屬性已修改。 因此,所有使用 this.SomeProperty
上任何欄位或屬性的規則都會重新經過評估。
注意
如果規則集是以設定為 ChainingBehavior 的 None 執行,則會忽略這個動作。