4 instantiations of ShouldSerializeKey
PresentationFramework (4)
System\Windows\Markup\Primitives\ElementMarkupObject.cs (4)
224if (!TryGetShouldSerializeMethod(new ShouldSerializeKey(ownerType, keyName), out shouldSerializeMethod)) 240CacheShouldSerializeMethod(new ShouldSerializeKey(ownerType, keyName), shouldSerializeMethod); 246if (!TryGetShouldSerializeMethod(new ShouldSerializeKey(instance.GetType(), pd.Name), out shouldSerializeMethod)) 263CacheShouldSerializeMethod(new ShouldSerializeKey(instanceType, pd.Name), shouldSerializeMethod);
9 references to ShouldSerializeKey
PresentationFramework (9)
System\Windows\Markup\Primitives\ElementMarkupObject.cs (9)
305if (!(obj is ShouldSerializeKey)) return false; 306ShouldSerializeKey other = (ShouldSerializeKey)obj; 314public static bool operator ==(ShouldSerializeKey key1, ShouldSerializeKey key2) 322public static bool operator !=(ShouldSerializeKey key1, ShouldSerializeKey key2) 336private static bool TryGetShouldSerializeMethod(ShouldSerializeKey key, out MethodInfo methodInfo) 352private static void CacheShouldSerializeMethod(ShouldSerializeKey key, MethodInfo methodInfo)