12 references to Add
System.Xaml (12)
System\Xaml\Schema\CollectionReflector.cs (8)
111
addMethod = genericICollection.GetMethod(KnownStrings.
Add
);
159
addMethod = GetMethod(type, KnownStrings.
Add
, TypeOfObjectArray);
175
addMethod = GetPublicMethod(genericIDictionary, KnownStrings.
Add
, 2);
223
addMethod = GetMethod(type, KnownStrings.
Add
, TypeOfTwoObjectArray);
233
return GetMethod(type, KnownStrings.
Add
, new Type[] { contentType });
296
MemberInfo[] addMembers = type.GetMember(KnownStrings.
Add
, MemberTypes.Method, GetBindingFlags(type));
402
s_listAddMethod = typeof(IList).GetMethod(KnownStrings.
Add
);
414
s_dictionaryAddMethod = typeof(IDictionary).GetMethod(KnownStrings.
Add
);
System\Xaml\Schema\TypeReflector.cs (4)
754
string adderName = KnownStrings.
Add
+ name + KnownStrings.Handler;
926
if (!KS.StartsWith(mi.Name, KnownStrings.
Add
) || !KS.EndsWith(mi.Name, KnownStrings.Handler))
934
name = mi.Name.Substring(KnownStrings.
Add
.Length,
935
mi.Name.Length - KnownStrings.
Add
.Length - KnownStrings.Handler.Length);