public DelegatedContextExpression(ContextExpressionEvaluationHandler handler)
 {
     if (handler == null) 
         throw new ArgumentNullException("handler");
     
     _handler = handler;
 }
        public DelegatedContextExpression(ContextExpressionEvaluationHandler handler)
        {
            if (handler == null)
            {
                throw new ArgumentNullException("handler");
            }

            _handler = handler;
        }