11 references to AssemblyQualifiedName
System.Formats.Nrbf (1)
System\Formats\Nrbf\ArrayRecord.cs (1)
83throw new InvalidOperationException(SR.Format(SR.Serialization_TypeMismatch, expectedArrayType.AssemblyQualifiedName, TypeName.AssemblyQualifiedName));
System.Private.Windows.Core (4)
System\Private\Windows\Core\BinaryFormat\Deserializer\DefaultTypeResolver.cs (4)
34if (_types.TryGetValue(typeName.AssemblyQualifiedName, out Type? cachedType)) 47_types[typeName.AssemblyQualifiedName] = binderType; 75_types[typeName.AssemblyQualifiedName] = type 76?? throw new SerializationException(string.Format(SR.Serialization_MissingType, typeName.AssemblyQualifiedName));
System.Reflection.Metadata (1)
System\Reflection\Metadata\TypeNameParserHelpers.cs (1)
34result.Append(genericArg.AssemblyQualifiedName); // see recursion comments in TypeName.FullName
System.Resources.Extensions (4)
System\Resources\Extensions\BinaryFormat\BinaryFormattedObject.TypeResolver.cs (4)
42if (_types.TryGetValue(typeName.AssemblyQualifiedName, out Type? cachedType)) 55_types[typeName.AssemblyQualifiedName] = binderType; 83_types[typeName.AssemblyQualifiedName] = type ?? throw new SerializationException(SR.Format(SR.Serialization_MissingType, typeName.AssemblyQualifiedName));
System.Windows.Forms (1)
System\Resources\ResXSerializationBinder.cs (1)
46Type? type = _typeResolver.GetType(parsed.AssemblyQualifiedName);