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

ExpressionList() public method

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

Same methods

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