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