1 write to realPropertyDescriptor
System.Workflow.ComponentModel (1)
Shared\BasePropertyDescriptor.cs (1)
172this.realPropertyDescriptor = descriptor;
16 references to realPropertyDescriptor
System.Workflow.ComponentModel (16)
Shared\BasePropertyDescriptor.cs (16)
187return this.realPropertyDescriptor; 195return this.realPropertyDescriptor.Category; 204attributes.AddRange(this.realPropertyDescriptor.Attributes); 214return this.realPropertyDescriptor.Converter; 222return this.realPropertyDescriptor.Description; 230return this.realPropertyDescriptor.DisplayName; 238return this.realPropertyDescriptor.ComponentType; 246return this.realPropertyDescriptor.PropertyType; 254return this.realPropertyDescriptor.IsReadOnly; 260this.realPropertyDescriptor.ResetValue(component); 265return this.realPropertyDescriptor.CanResetValue(component); 274if (string.Equals(this.realPropertyDescriptor.GetType().FullName, "System.ComponentModel.Design.InheritedPropertyDescriptor", StringComparison.Ordinal)) 277return this.realPropertyDescriptor.ShouldSerializeValue(component); 286return this.realPropertyDescriptor.GetValue(component); 292this.realPropertyDescriptor.SetValue(component, value); 294PropertyDescriptorUtils.SetPropertyValue(ServiceProvider, this.realPropertyDescriptor, component, value);