3 instantiations of AssemblyNameInfo
System.Reflection.Metadata (1)
System\Reflection\Metadata\AssemblyNameInfo.cs (1)
220result = 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)
88string formNoVersionFullyQualifiedName = $"{typeof(Form).FullName}, {new AssemblyNameInfo(
33 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 (5)
System\Reflection\Metadata\TypeNameComparer.cs (1)
72if (obj.AssemblyName is AssemblyNameInfo info)
System\TypeExtensions.cs (4)
160private static bool AssemblyNamesMatch(Type type, AssemblyNameInfo? assemblyNameInfo, TypeNameComparison comparison) 189/// <inheritdoc cref="AssemblyNamesMatch(Type, AssemblyNameInfo?, TypeNameComparison)"/> 190private static bool AssemblyNamesMatch(AssemblyNameInfo? name1, AssemblyNameInfo? name2, TypeNameComparison comparison)
System.Private.Windows.Core.Tests (3)
System\Private\Windows\Ole\BinaryFormatUtilitiesTests.cs (2)
1106AssemblyNameInfo? info1 = typeName.AssemblyName; 1107AssemblyNameInfo? info2 = name.AssemblyName;
System\Reflection\Metadata\TypeNameComparerTests.cs (1)
76AssemblyNameInfo info = name.AssemblyName!;
System.Reflection.Metadata (11)
System\Reflection\Metadata\AssemblyNameInfo.cs (3)
204public static AssemblyNameInfo Parse(ReadOnlySpan<char> assemblyName) 205=> TryParse(assemblyName, out AssemblyNameInfo? result) 215public static bool TryParse(ReadOnlySpan<char> assemblyName, [NotNullWhen(true)] out AssemblyNameInfo? result)
System\Reflection\Metadata\TypeName.cs (4)
45AssemblyNameInfo? assemblyName, 74AssemblyNameInfo? assemblyName, 136public AssemblyNameInfo? AssemblyName { get; } 586public 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.Tests (1)
System\Resources\ResXSerializationBinderTests.cs (1)
87AssemblyNameInfo? assemblyNameInfo = parsed.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;