4 instantiations of ShouldSerializeKey
PresentationFramework (4)
System\Windows\Markup\Primitives\ElementMarkupObject.cs (4)
212if (!TryGetShouldSerializeMethod(new ShouldSerializeKey(ownerType, keyName), out shouldSerializeMethod)) 228CacheShouldSerializeMethod(new ShouldSerializeKey(ownerType, keyName), shouldSerializeMethod); 234if (!TryGetShouldSerializeMethod(new ShouldSerializeKey(instance.GetType(), pd.Name), out shouldSerializeMethod)) 251CacheShouldSerializeMethod(new ShouldSerializeKey(instanceType, pd.Name), shouldSerializeMethod);
9 references to ShouldSerializeKey
PresentationFramework (9)
System\Windows\Markup\Primitives\ElementMarkupObject.cs (9)
293if (!(obj is ShouldSerializeKey)) return false; 294ShouldSerializeKey other = (ShouldSerializeKey)obj; 302public static bool operator ==(ShouldSerializeKey key1, ShouldSerializeKey key2) 310public static bool operator !=(ShouldSerializeKey key1, ShouldSerializeKey key2) 324private static bool TryGetShouldSerializeMethod(ShouldSerializeKey key, out MethodInfo methodInfo) 340private static void CacheShouldSerializeMethod(ShouldSerializeKey key, MethodInfo methodInfo)