public DelegatedContextExpression(ContextExpressionEvaluationHandler handler)
 {
     if (handler == null) 
         throw new ArgumentNullException("handler");
     
     _handler = handler;
 }
Ejemplo n.º 2
0
        public DelegatedContextExpression(ContextExpressionEvaluationHandler handler)
        {
            if (handler == null)
            {
                throw new ArgumentNullException("handler");
            }

            _handler = handler;
        }