3 writes to obj
System.Workflow.ComponentModel (3)
AuthoringOM\Design\ComponentSerializationService.cs (3)
449
this.
obj
= obj;
455
this.
obj
= obj;
462
this.
obj
= obj;
11 references to obj
System.Workflow.ComponentModel (11)
AuthoringOM\Design\ComponentSerializationService.cs (11)
468
get { return this.
obj
; }
484
if (propertyDesc == null && this.
obj
!= null && this.property != null)
485
propertyDesc = TypeDescriptor.GetProperties(this.
obj
)[this.property.Name];
502
else if (this.
obj
!= null)
505
TypeConverter converter = TypeDescriptor.GetConverter(this.
obj
);
508
DummyTypeDescriptorContext dummyContext = new DummyTypeDescriptorContext(this.serviceProvider, GetComponent(this.
obj
, serviceProvider), null);
509
props = converter.GetProperties(dummyContext, this.
obj
, new Attribute[] { });
512
props = TypeDescriptor.GetProperties(this.
obj
);
516
PropertyInfo propInfo = XomlComponentSerializationService.GetProperty(this.
obj
.GetType(), propDesc.Name, BindingFlags.Public | BindingFlags.Instance);
529
DummyTypeDescriptorContext dummyContext = new DummyTypeDescriptorContext(this.serviceProvider, GetComponent(this.
obj
, serviceProvider), propDesc);
532
foreach (PropertyDescriptor childDesc in propDesc.Converter.GetProperties(dummyContext, this.
obj
, new Attribute[] { }))