4 instantiations of ShouldSerializeKey
PresentationFramework (4)
System\Windows\Markup\Primitives\ElementMarkupObject.cs (4)
213
if (!TryGetShouldSerializeMethod(new
ShouldSerializeKey
(ownerType, keyName), out shouldSerializeMethod))
229
CacheShouldSerializeMethod(new
ShouldSerializeKey
(ownerType, keyName), shouldSerializeMethod);
235
if (!TryGetShouldSerializeMethod(new
ShouldSerializeKey
(instance.GetType(), pd.Name), out shouldSerializeMethod))
252
CacheShouldSerializeMethod(new
ShouldSerializeKey
(instanceType, pd.Name), shouldSerializeMethod);
9 references to ShouldSerializeKey
PresentationFramework (9)
System\Windows\Markup\Primitives\ElementMarkupObject.cs (9)
294
if (!(obj is
ShouldSerializeKey
)) return false;
295
ShouldSerializeKey
other = (
ShouldSerializeKey
)obj;
303
public static bool operator ==(
ShouldSerializeKey
key1,
ShouldSerializeKey
key2)
311
public static bool operator !=(
ShouldSerializeKey
key1,
ShouldSerializeKey
key2)
325
private static bool TryGetShouldSerializeMethod(
ShouldSerializeKey
key, out MethodInfo methodInfo)
341
private static void CacheShouldSerializeMethod(
ShouldSerializeKey
key, MethodInfo methodInfo)