10 references to memberList
System.Workflow.ComponentModel (10)
AuthoringOM\Design\ComponentSerializationService.cs (10)
186this.memberList.Add(member); 244for (int loop = 0; loop < this.memberList.Count; loop++) 251PropertyDescriptor member = this.memberList[loop] as PropertyDescriptor; 303if (this.memberList.Count == 0) 319for (int loop = 0; loop < this.memberList.Count; loop++) 323if (this.memberList[loop] is PropertyDescriptor) 325PropertyInfo propertyInfo = XomlComponentSerializationService.GetProperty(obj.GetType(), (this.memberList[loop] as PropertyDescriptor).Name, BindingFlags.Public | BindingFlags.Instance); 329serializer.SerializeObject(xomlSerializationManager, new PropertySegment(this.serviceProvider, obj, this.memberList[loop] as PropertyDescriptor), writer); 331else if (this.memberList[loop] is EventDescriptor) 337PropertySegment propertySegment = new PropertySegment(serviceProvider, obj, eventBindingService.GetEventProperty(this.memberList[loop] as EventDescriptor));