Show Navigation
Next Topic »
ExcludeFromEvaluationAttribute class
Namespace: CodeEffects.Rule.Attributes
If applied to any member of the source object, notifies Rule Editor that this member should be ignored.
Syntax
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field | AttributeTargets.Method,
AllowMultiple = false)]
public 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; }
}
}
Post your questions on
Stackoverflow and become a part of our growing community
Comments:
0
|
|