|
ExcludeFromEvaluationAttribute class
Namespace: CodeEffects.Rule.Attributes
Assembly: CodeEffects.Rule.dll
If applied to any member of the source object, notifies Web Rule that this member should be ignored.
Syntax
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Method,
AllowMultiple = false)]
public sealed class ExcludeFromEvaluationAttribute : System.Attribute
Example
using CodeEffects.Rule.Attributes;
namespace TestLibrary
{
public class Thing
{
[ExcludeFromEvaluation]
public int ID { get; set; }
public string Name { get; set; }
}
}
|