3 instantiations of AssemblyNameInfo
System.Reflection.Metadata (1)
System\Reflection\Metadata\AssemblyNameInfo.cs (1)
206result = new(parts);
System.Windows.Forms (1)
System\Resources\ResXSerializationBinder.cs (1)
56$"{typeName}, {new AssemblyNameInfo(
System.Windows.Forms.Tests (1)
System\Resources\ResXSerializationBinderTests.cs (1)
90string formNoVersionFullyQualifiedName = $"{typeof(Form).FullName}, {new AssemblyNameInfo(
35 references to AssemblyNameInfo
illink (2)
PresentationBuildTasks (2)
src\Microsoft.DotNet.Wpf\src\Shared\MS\Internal\ReflectionUtils.cs (2)
77dirtyName = !AssemblyNameInfo.TryParse(dirtyName, out AssemblyNameInfo? result) ? ReadOnlySpan<char>.Empty : result.Name;
System.Formats.Nrbf (7)
System\Formats\Nrbf\BinaryLibraryRecord.cs (4)
25private BinaryLibraryRecord(SerializationRecordId libraryId, AssemblyNameInfo libraryName) 37internal AssemblyNameInfo? LibraryName { get; } 47if (AssemblyNameInfo.TryParse(rawName.AsSpan(), out AssemblyNameInfo? assemblyNameInfo))
System\Formats\Nrbf\Utils\TypeNameHelpers.cs (3)
22private static AssemblyNameInfo? s_coreLibAssemblyName; 158=> systemType.With(s_coreLibAssemblyName ??= AssemblyNameInfo.Parse("mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089".AsSpan())); 160private static TypeName With(this TypeName typeName, AssemblyNameInfo assemblyName)
System.Private.Windows.Core (6)
System\Reflection\Metadata\DataObject.Composition.TypeNameComparer.cs (1)
58if (obj.AssemblyName is AssemblyNameInfo info)
System\TypeExtensions.cs (5)
137static bool AssemblyNamesLessVersionMatch(string? fullName, AssemblyNameInfo? nameInfo) 149if (!AssemblyNameInfo.TryParse(fullName, out AssemblyNameInfo? nameInfo1)) 219static bool AssemblyNamesMatch(AssemblyNameInfo? name1, AssemblyNameInfo? name2)
System.Reflection.Metadata (11)
System\Reflection\Metadata\AssemblyNameInfo.cs (3)
190public static AssemblyNameInfo Parse(ReadOnlySpan<char> assemblyName) 191=> TryParse(assemblyName, out AssemblyNameInfo? result) 201public static bool TryParse(ReadOnlySpan<char> assemblyName, [NotNullWhen(true)] out AssemblyNameInfo? result)
System\Reflection\Metadata\TypeName.cs (4)
45AssemblyNameInfo? assemblyName, 74AssemblyNameInfo? assemblyName, 104public AssemblyNameInfo? AssemblyName { get; } 441public TypeName WithAssemblyName(AssemblyNameInfo? assemblyName)
System\Reflection\Metadata\TypeNameParser.cs (4)
187AssemblyNameInfo? assemblyName = null; 228private bool TryParseAssemblyName(ref AssemblyNameInfo? assemblyName) 240if (!AssemblyNameInfo.TryParse(candidate, out assemblyName)) 252private static TypeName? GetDeclaringType(string fullTypeName, List<int>? nestedNameLengths, AssemblyNameInfo? assemblyName)
System.Windows.Forms (1)
System\Windows\Forms\OLE\Clipboard.cs (1)
238/// from the allowed type and match it to the <see cref="AssemblyNameInfo.FullName"/> property of <see cref="TypeName.AssemblyName"/>.
System.Windows.Forms.Tests (4)
System\Resources\ResXSerializationBinderTests.cs (1)
89AssemblyNameInfo? assemblyNameInfo = parsed.AssemblyName;
System\Windows\Forms\BinaryFormatUtilitiesTests.cs (2)
1105AssemblyNameInfo? info1 = typeName.AssemblyName; 1106AssemblyNameInfo? info2 = name.AssemblyName;
System\Windows\Forms\TypeNameComparerTests.cs (1)
78AssemblyNameInfo info = name.AssemblyName!;
System.Xaml (2)
src\Microsoft.DotNet.Wpf\src\Shared\MS\Internal\ReflectionUtils.cs (2)
77dirtyName = !AssemblyNameInfo.TryParse(dirtyName, out AssemblyNameInfo? result) ? ReadOnlySpan<char>.Empty : result.Name;