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)
80
throw 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)
34
if (_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)
34
result.Append(genericArg.
AssemblyQualifiedName
); // see recursion comments in TypeName.FullName
System.Resources.Extensions (4)
System\Resources\Extensions\BinaryFormat\BinaryFormattedObject.TypeResolver.cs (4)
42
if (_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 (4)
System\Resources\ResXSerializationBinder.cs (1)
46
Type? type = _typeResolver.GetType(parsed.
AssemblyQualifiedName
);
System\Windows\Forms\OLE\DataObject.Composition.Binder.cs (2)
258
typeName.
AssemblyQualifiedName
));
264
typeName.
AssemblyQualifiedName
));
System\Windows\Forms\OLE\JsonData.cs (1)
113
public readonly string InnerTypeAssemblyQualifiedName => typeof(T).ToTypeName().
AssemblyQualifiedName
;
System.Windows.Forms.Tests (8)
System\Windows\Forms\BinaryFormatUtilitiesTests.cs (6)
454
throw new NotSupportedException($"Can't resolve {typeName.
AssemblyQualifiedName
}");
561
throw new NotSupportedException($"Can't resolve {typeName.
AssemblyQualifiedName
}");
594
throw new NotSupportedException($"Can't resolve {typeName.
AssemblyQualifiedName
}");
634
throw new NotSupportedException($"Can't resolve {typeName.
AssemblyQualifiedName
}");
841
throw new NotSupportedException($"Can't resolve {typeName.
AssemblyQualifiedName
}");
1036
throw new NotSupportedException($"Can't resolve {typeName.
AssemblyQualifiedName
}");
System\Windows\Forms\ClipboardTests.cs (2)
785
throw new NotSupportedException($"Can't resolve {typeName.
AssemblyQualifiedName
}");
1058
typeof(SimpleTestData).AssemblyQualifiedName.Should().NotBe(checkedResult.
AssemblyQualifiedName
);