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