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