コード例 #1
0
        private DynamicPropertyProxy(
            IObservableProperty observableProperty,
            bool readOnly)
        {
            ObservableProperty = observableProperty;
            IsReadOnly         = readOnly;
            observableFactory  = observableProperty.CreateFactory();

            Initialize();
        }
コード例 #2
0
        public RuntimeProxyManager(
            IObservableProperty observableProperty,
            MethodInterceptions methodInterceptions,
            bool readOnly)
        {
            ObservableProperty       = observableProperty;
            this.methodInterceptions = methodInterceptions;
            IsReadOnly        = readOnly;
            observableFactory = observableProperty.CreateFactory();

            Initialize();
        }