1 write to realPropertyDescriptor
System.Workflow.Activities (1)
Common\BasePropertyDescriptor.cs (1)
173this.realPropertyDescriptor = descriptor;
16 references to realPropertyDescriptor
System.Workflow.Activities (16)
Common\BasePropertyDescriptor.cs (16)
188return this.realPropertyDescriptor; 196return this.realPropertyDescriptor.Category; 205attributes.AddRange(this.realPropertyDescriptor.Attributes); 215return this.realPropertyDescriptor.Converter; 223return this.realPropertyDescriptor.Description; 231return this.realPropertyDescriptor.DisplayName; 239return this.realPropertyDescriptor.ComponentType; 247return this.realPropertyDescriptor.PropertyType; 255return this.realPropertyDescriptor.IsReadOnly; 261this.realPropertyDescriptor.ResetValue(component); 266return this.realPropertyDescriptor.CanResetValue(component); 275if (string.Equals(this.realPropertyDescriptor.GetType().FullName, "System.ComponentModel.Design.InheritedPropertyDescriptor", StringComparison.Ordinal)) 278return this.realPropertyDescriptor.ShouldSerializeValue(component); 287return this.realPropertyDescriptor.GetValue(component); 293this.realPropertyDescriptor.SetValue(component, value); 295PropertyDescriptorUtils.SetPropertyValue(ServiceProvider, this.realPropertyDescriptor, component, value);