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