2 instantiations of AttributeList
System.Data (2)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\Metadata\MutableAttributeTable.cs (2)
339list = new AttributeList(); 396md.TypeAttributes = new AttributeList();
18 references to AttributeList
System.Data (18)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\Base\Core\Internal\Metadata\MutableAttributeTable.cs (18)
67private static void AddAttributes(AttributeList list, IEnumerable<object> attributes) 77AttributeList list = GetTypeList(type); 135foreach (KeyValuePair<string, AttributeList> kv in newMd.MemberAttributes) 137AttributeList existing; 198private void ExpandAttributes(Type type, AttributeList attributes) 233AttributeList attributes = GetExpandedAttributes(type, null, delegate(Type typeToGet, object callbackParam) 285AttributeList attributes = GetExpandedAttributes(ownerType, memberName, delegate(Type typeToGet, object callbackParam) 304AttributeList list; 326private AttributeList GetMemberList(Type ownerType, string memberName) 333md.MemberAttributes = new Dictionary<string, AttributeList>(); 336AttributeList list; 352private AttributeList GetExpandedAttributes(Type type, object callbackParam, GetAttributesCallback callback) 357AttributeList attributes = callback(type, callbackParam); 390private AttributeList GetTypeList(Type type) 534foreach (KeyValuePair<string, AttributeList> kvMember in kv.Value.MemberAttributes) 593private delegate AttributeList GetAttributesCallback(Type type, object callbackParam); 600internal AttributeList TypeAttributes; 601internal Dictionary<string, AttributeList> MemberAttributes;