12 references to Add
System.Xaml (12)
System\Xaml\Schema\CollectionReflector.cs (8)
117
addMethod = genericICollection.GetMethod(KnownStrings.
Add
);
166
addMethod = GetMethod(type, KnownStrings.
Add
, TypeOfObjectArray);
182
addMethod = GetPublicMethod(genericIDictionary, KnownStrings.
Add
, 2);
231
addMethod = GetMethod(type, KnownStrings.
Add
, TypeOfTwoObjectArray);
241
return GetMethod(type, KnownStrings.
Add
, new Type[] { contentType });
309
MemberInfo[] addMembers = type.GetMember(KnownStrings.
Add
, MemberTypes.Method, GetBindingFlags(type));
425
s_listAddMethod = typeof(IList).GetMethod(KnownStrings.
Add
);
438
s_dictionaryAddMethod = typeof(IDictionary).GetMethod(KnownStrings.
Add
);
System\Xaml\Schema\TypeReflector.cs (4)
781
string adderName = KnownStrings.
Add
+ name + KnownStrings.Handler;
961
if (!KS.StartsWith(mi.Name, KnownStrings.
Add
) || !KS.EndsWith(mi.Name, KnownStrings.Handler))
971
name = mi.Name.Substring(KnownStrings.
Add
.Length,
972
mi.Name.Length - KnownStrings.
Add
.Length - KnownStrings.Handler.Length);