Rule.ElseActions Propriedade

Definição

Obtém uma coleção de classes RuleAction para executar no caso de ELSE.Gets a collection of RuleAction classes to perform in the ELSE case.

public:
 property System::Collections::Generic::IList<System::Workflow::Activities::Rules::RuleAction ^> ^ ElseActions { System::Collections::Generic::IList<System::Workflow::Activities::Rules::RuleAction ^> ^ get(); };
public System.Collections.Generic.IList<System.Workflow.Activities.Rules.RuleAction> ElseActions { get; }
member this.ElseActions : System.Collections.Generic.IList<System.Workflow.Activities.Rules.RuleAction>
Public ReadOnly Property ElseActions As IList(Of RuleAction)

Valor da propriedade

IList<RuleAction>

Uma coleção de RuleAction a ser executada no caso Else.A collection of RuleAction to perform in the ELSE case.

Comentários

ElseActions Normalmente, defina um valor de variável em uma das propriedades da atividade, chama um método da atividade ou chama métodos estáticos em tipos em assemblies referenciados.ElseActions typically set a variable value on one of the properties of the activity, calls a method of the activity, or calls static methods on types in referenced assemblies.

O RuleHaltAction faz com que o RuleSet pare de executar e retorne o controle para o método de chamada.The RuleHaltAction causes the RuleSet to stop executing and returns control to the calling method. Um RuleStatementAction modifica uma propriedade ou chama um método.A RuleStatementAction modifies a property or calls a method. Um RuleUpdateAction indica explicitamente que uma regra está atualizando uma variável.A RuleUpdateAction explicitly indicates that a rule is updating a variable. Isso causa a reavaliação de quaisquer regras afetadas.This causes the re-evaluation of any affected rules.

Aplica-se a