public PropertyDispatching(
     Expression <Func <TResult> > propertyExpression,
     IDispatcher destinationDispatcher,
     IPropertySourceDispatcher sourceDispatcher) : this()
 {
     _propertySourceDispatcher = sourceDispatcher;
     _destinationDispatcher    = destinationDispatcher;
     _propertyExpression       = propertyExpression;
     lockChangeSetValueHandle();
 }
Ejemplo n.º 2
0
        public PropertyDispatching(
            Expression <Func <TResult> > propertyExpression,
            IDispatcher destinationDispatcher,
            IPropertySourceDispatcher sourceDispatcher)
        {
            _propertySourceDispatcher = sourceDispatcher;
            _destinationDispatcher    = destinationDispatcher;

            initialize(propertyExpression);
        }