4 instantiations of ShouldSerializeKey
PresentationFramework (4)
src\Framework\System\Windows\Markup\Primitives\ElementMarkupObject.cs (4)
229
if (!TryGetShouldSerializeMethod(new
ShouldSerializeKey
(ownerType, keyName), out shouldSerializeMethod))
245
CacheShouldSerializeMethod(new
ShouldSerializeKey
(ownerType, keyName), shouldSerializeMethod);
251
if (!TryGetShouldSerializeMethod(new
ShouldSerializeKey
(instance.GetType(), pd.Name), out shouldSerializeMethod))
268
CacheShouldSerializeMethod(new
ShouldSerializeKey
(instanceType, pd.Name), shouldSerializeMethod);
9 references to ShouldSerializeKey
PresentationFramework (9)
src\Framework\System\Windows\Markup\Primitives\ElementMarkupObject.cs (9)
310
if (!(obj is
ShouldSerializeKey
)) return false;
311
ShouldSerializeKey
other = (
ShouldSerializeKey
)obj;
319
public static bool operator ==(
ShouldSerializeKey
key1,
ShouldSerializeKey
key2)
327
public static bool operator !=(
ShouldSerializeKey
key1,
ShouldSerializeKey
key2)
341
private static bool TryGetShouldSerializeMethod(
ShouldSerializeKey
key, out MethodInfo methodInfo)
357
private static void CacheShouldSerializeMethod(
ShouldSerializeKey
key, MethodInfo methodInfo)