예제 #1
0
        public static IDisposable StartUpdate <T>(NotificationObject notification_object, Expression <Func <T> > propertyExpression)
        {
            var property_name = PropertySupport.ExtractPropertyName(propertyExpression);

            return(StartUpdate(notification_object, property_name));
        }
예제 #2
0
        protected void RaisePropertyChanged <T>(Expression <Func <T> > propertyExpression)
        {
            var propertyName = PropertySupport.ExtractPropertyName(propertyExpression);

            this.RaisePropertyChanged(propertyName);
        }