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; }
	}
}
Code Effects Software ©  · Web Scheduler · CodeEffects.com
Current version 2.0.1.4 · Built on March 27, 2012
Terms and Conditions · Privacy Policy