Navigation

Categories
Show Navigation Next Topic  »

ExcludedOperator Enumeration

Namespace: CodeEffects.Rule.Models
public enum ExcludedOperator
{
	Equal = 1 << 0,
	NotEqual = 1 << 1,
	Less = 1 << 2,
	LessOrEqual = 1 << 3,
	Greater = 1 << 4,
	GreaterOrEqual = 1 << 5,
	Contains = 1 << 6,
	DoesNotContain = 1 << 7,
	EndsWith = 1 << 8,
	DoesNotEndWith = 1 << 9,
	StartsWith = 1 << 10,
	DoesNotStartWith = 1 << 11
}

OperatorType Enumeration

Namespace: CodeEffects.Rule.Models
public enum OperatorType
{
	String = 0,
	Numeric = 1,
	Date = 2,
	Time = 3,
	Bool = 4,
	Enum = 6,
	None = 8
}

ParameterType Enumeration

Namespace: CodeEffects.Rule.Models
public enum ParameterType
{
	Source = 0,
	Input = 1,
	Constant = 2,
	None = 4
}

Post your questions on Stackoverflow and become a part of our growing community

Comments: 0