23 references to AssemblyQualifiedName
Microsoft.VisualBasic.Tests (1)
Microsoft\VisualBasic\MyServices\ClipboardProxyTests.cs (1)
157: throw new NotSupportedException($"Can't resolve {typeName.AssemblyQualifiedName}");
System.Formats.Nrbf (1)
System\Formats\Nrbf\ArrayRecord.cs (1)
85throw new InvalidOperationException(SR.Format(SR.Serialization_TypeMismatch, expectedArrayType.AssemblyQualifiedName, TypeName.AssemblyQualifiedName));
System.Private.Windows.Core (6)
System\Private\Windows\BinaryFormat\Deserializer\DefaultTypeResolver.cs (4)
31throw new SerializationException(string.Format(SR.Serialization_MissingType, typeName.AssemblyQualifiedName)); 38if (_types.TryGetValue(typeName.AssemblyQualifiedName, out Type? cachedType)) 52_types[typeName.AssemblyQualifiedName] = binderType; 83_types[typeName.AssemblyQualifiedName] = type;
System\Private\Windows\JsonData.cs (1)
112public readonly string InnerTypeAssemblyQualifiedName => typeof(T).ToTypeName().AssemblyQualifiedName;
System\Private\Windows\Ole\TypeBinder.cs (1)
92typeName.AssemblyQualifiedName));
System.Private.Windows.Core.Tests (7)
System\Private\Windows\Ole\BinaryFormatUtilitesTestsBase.cs (1)
128throw new NotSupportedException($"Can't resolve {typeName.AssemblyQualifiedName}");
System\Private\Windows\Ole\BinaryFormatUtilitiesTests.cs (2)
447throw new NotSupportedException($"Can't resolve {typeName.AssemblyQualifiedName}"); 726throw new NotSupportedException($"Can't resolve {typeName.AssemblyQualifiedName}");
System\Private\Windows\Ole\NativeToManagedAdapterTests.cs (2)
93data!.TypeName.AssemblyQualifiedName.Should().Be("System.Int32[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"); 109data!.TypeName.AssemblyQualifiedName.Should().Be("System.Private.Windows.JsonData, System.Private.Windows.VirtualJson");
System\Private\Windows\Ole\TypeBinderTests.cs (1)
184type = Type.GetType(typeName.AssemblyQualifiedName);
System\TypeExtensionsTests.cs (1)
128record.TypeName.AssemblyQualifiedName.Should().Be(expected[0]);
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);
System.Windows.Forms.Tests (3)
System\Windows\Forms\ClipboardTests.cs (2)
791throw new NotSupportedException($"Can't resolve {typeName.AssemblyQualifiedName}"); 1059typeof(SimpleTestData).AssemblyQualifiedName.Should().Be(checkedResult.AssemblyQualifiedName);
System\Windows\Forms\Ole\BinaryFormatUtilitiesTests.cs (1)
89throw new NotSupportedException($"Can't resolve {typeName.AssemblyQualifiedName}");