2 instantiations of ObjectMap
mscorlib (2)
system\runtime\serialization\formatters\binary\binarycommonclasses.cs (2)
2169return new ObjectMap(name, objectType, memberNames, objectReader, objectId, assemblyInfo); 2176return new ObjectMap(name, memberNames, binaryTypeEnumA, typeInformationA, memberAssemIds, objectReader, objectId, assemblyInfo, assemIdToAssemblyTable);
8 references to ObjectMap
mscorlib (8)
system\runtime\serialization\formatters\binary\binarycommonclasses.cs (2)
2167internal static ObjectMap Create(String name, Type objectType, String[] memberNames, ObjectReader objectReader, Int32 objectId, BinaryAssemblyInfo assemblyInfo) 2174internal static ObjectMap Create(String name, String[] memberNames, BinaryTypeEnum[] binaryTypeEnumA, Object[] typeInformationA, int[] memberAssemIds, ObjectReader objectReader, Int32 objectId, BinaryAssemblyInfo assemblyInfo, SizedArray assemIdToAssemblyTable)
system\runtime\serialization\formatters\binary\binaryparser.cs (6)
451ObjectMap objectMap = (ObjectMap)ObjectMapIdTable[binaryObject.mapId]; 586ObjectMap objectMap = ObjectMap.Create(record.name, objectType, record.memberNames, objectReader, record.objectId, assemblyInfo); 683ObjectMap objectMap = ObjectMap.Create(record.name, record.memberNames, record.binaryTypeEnumA, record.typeInformationA, record.memberAssemIds, objectReader, record.objectId, assemblyInfo, AssemIdToAssemblyTable);