12 references to Add
System.Xaml (12)
System\Xaml\Schema\CollectionReflector.cs (8)
112
addMethod = genericICollection.GetMethod(KnownStrings.
Add
);
160
addMethod = GetMethod(type, KnownStrings.
Add
, TypeOfObjectArray);
176
addMethod = GetPublicMethod(genericIDictionary, KnownStrings.
Add
, 2);
224
addMethod = GetMethod(type, KnownStrings.
Add
, TypeOfTwoObjectArray);
234
return GetMethod(type, KnownStrings.
Add
, new Type[] { contentType });
297
MemberInfo[] addMembers = type.GetMember(KnownStrings.
Add
, MemberTypes.Method, GetBindingFlags(type));
403
s_listAddMethod = typeof(IList).GetMethod(KnownStrings.
Add
);
415
s_dictionaryAddMethod = typeof(IDictionary).GetMethod(KnownStrings.
Add
);
System\Xaml\Schema\TypeReflector.cs (4)
756
string adderName = KnownStrings.
Add
+ name + KnownStrings.Handler;
928
if (!KS.StartsWith(mi.Name, KnownStrings.
Add
) || !KS.EndsWith(mi.Name, KnownStrings.Handler))
936
name = mi.Name.Substring(KnownStrings.
Add
.Length,
937
mi.Name.Length - KnownStrings.
Add
.Length - KnownStrings.Handler.Length);