12 references to Add
System.Xaml (12)
System\Xaml\Schema\CollectionReflector.cs (8)
116
addMethod = genericICollection.GetMethod(KnownStrings.
Add
);
165
addMethod = GetMethod(type, KnownStrings.
Add
, TypeOfObjectArray);
181
addMethod = GetPublicMethod(genericIDictionary, KnownStrings.
Add
, 2);
230
addMethod = GetMethod(type, KnownStrings.
Add
, TypeOfTwoObjectArray);
240
return GetMethod(type, KnownStrings.
Add
, new Type[] { contentType });
308
MemberInfo[] addMembers = type.GetMember(KnownStrings.
Add
, MemberTypes.Method, GetBindingFlags(type));
424
s_listAddMethod = typeof(IList).GetMethod(KnownStrings.
Add
);
437
s_dictionaryAddMethod = typeof(IDictionary).GetMethod(KnownStrings.
Add
);
System\Xaml\Schema\TypeReflector.cs (4)
780
string adderName = KnownStrings.
Add
+ name + KnownStrings.Handler;
960
if (!KS.StartsWith(mi.Name, KnownStrings.
Add
) || !KS.EndsWith(mi.Name, KnownStrings.Handler))
970
name = mi.Name.Substring(KnownStrings.
Add
.Length,
971
mi.Name.Length - KnownStrings.
Add
.Length - KnownStrings.Handler.Length);