SenseNet.ContentRepository.Storage.Search.ExpressionList.ExpressionList C# (CSharp) Method

ExpressionList() public method

public ExpressionList ( ChainOperator operatorType, Expression exp0, Expression exp1, Expression exp2 ) : System.Collections.Generic
operatorType ChainOperator
exp0 Expression
exp1 Expression
exp2 Expression
return System.Collections.Generic
		public ExpressionList(ChainOperator operatorType, Expression exp0, Expression exp1, Expression exp2) : this(operatorType)
		{
			if (exp0 == null)
				throw new ArgumentNullException("exp0");
			if (exp1 == null)
				throw new ArgumentNullException("exp1");
			if (exp2 == null)
				throw new ArgumentNullException("exp2");
			Add(exp0);
			Add(exp1);
			Add(exp2);
		}
		public ExpressionList(ChainOperator operatorType, params Expression[] expressions) : this(operatorType)

Same methods

ExpressionList::ExpressionList ( ChainOperator operatorType ) : System.Collections.Generic
ExpressionList::ExpressionList ( ChainOperator operatorType, Expression expression ) : System.Collections.Generic
ExpressionList::ExpressionList ( ChainOperator operatorType, Expression exp0, Expression exp1 ) : System.Collections.Generic