2 instantiations of TypeInformation
mscorlib (2)
system\runtime\serialization\formatters\binary\binaryformatter.cs (2)
247
return new
TypeInformation
(FormatterServices.GetClrTypeFullName(t), assemblyName2, hasTypeForwardedFrom2);
257
typeInformation = new
TypeInformation
(FormatterServices.GetClrTypeFullName(type), assemblyName, hasTypeForwardedFrom);
10 references to TypeInformation
mscorlib (10)
system\runtime\serialization\formatters\binary\binaryformatter.cs (7)
53
private static Dictionary<Type,
TypeInformation
> typeNameCache = new Dictionary<Type,
TypeInformation
>();
54
private static Lazy<ConcurrentDictionary<Type,
TypeInformation
>> concurrentTypeNameCache = new Lazy<ConcurrentDictionary<Type,
TypeInformation
>>(() => new ConcurrentDictionary<Type,
TypeInformation
>());
239
internal static
TypeInformation
GetTypeInformation(Type type)
252
TypeInformation
typeInformation = null;
system\runtime\serialization\formatters\binary\binaryobjectinfo.cs (2)
260
TypeInformation
typeInformation = null;
929
TypeInformation
typeInformation = BinaryFormatter.GetTypeInformation(type);
system\runtime\serialization\formatters\binary\binaryobjectreader.cs (1)
1514
TypeInformation
typeInfo = BinaryFormatter.GetTypeInformation(resolvedType);