2 writes to MemberAttributes
System.Data (2)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\Metadata\MutableAttributeTable.cs (2)
150existingMd.MemberAttributes = newMd.MemberAttributes; 333md.MemberAttributes = new Dictionary<string, AttributeList>();
14 references to MemberAttributes
System.Data (14)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\Metadata\MutableAttributeTable.cs (14)
131if (newMd.MemberAttributes != null) 133if (existingMd.MemberAttributes != null) 135foreach (KeyValuePair<string, AttributeList> kv in newMd.MemberAttributes) 138if (existingMd.MemberAttributes.TryGetValue(kv.Key, out existing)) 144existingMd.MemberAttributes.Add(kv.Key, kv.Value); 150existingMd.MemberAttributes = newMd.MemberAttributes; 297if (md.MemberAttributes == null && md.TypeAttributes != null && !md.TypeAttributes.IsExpanded) 302if (md.MemberAttributes != null) 305if (md.MemberAttributes.TryGetValue(name, out list)) 331if (md.MemberAttributes == null) 337if (!md.MemberAttributes.TryGetValue(memberName, out list)) 340md.MemberAttributes.Add(memberName, list); 531if (kv.Value.MemberAttributes != null) 534foreach (KeyValuePair<string, AttributeList> kvMember in kv.Value.MemberAttributes)