51 references to FullName
illink (1)
Linker\TypeNameResolver.cs (1)
135
return module.ResolveType (TypeNameHelpers.Unescape (typeName.
FullName
), _metadataResolver);
Microsoft.VisualBasic.Tests (1)
Microsoft\VisualBasic\MyServices\ClipboardProxyTests.cs (1)
155
typeof(DataWithObjectField).FullName == typeName.
FullName
System.Formats.Nrbf (4)
System\Formats\Nrbf\SerializationRecord.cs (1)
117
if (type.FullName == typeName.
FullName
)
System\Formats\Nrbf\SystemClassWithMembersAndTypesRecord.cs (3)
55
return (primitiveType, typeName.
FullName
, memberName) switch
75
else if (classInfo.MemberNames.Count == 2 && typeName.
FullName
== "System.DateTime"
81
else if (classInfo.MemberNames.Count == 4 && typeName.
FullName
== "System.Decimal"
System.Private.Windows.Core (8)
System\Private\Windows\BinaryFormat\Deserializer\DefaultTypeResolver.cs (3)
79
: assembly.GetType(typeName.
FullName
);
98
return assembly.GetType(typeName.
FullName
, throwOnError: false, ignoreCase: false);
106
typeName.
FullName
,
System\Private\Windows\Nrbf\SerializationRecordExtensions.cs (1)
631
typeName.
FullName
,
System\Reflection\Metadata\TypeNameComparer.cs (1)
71
hashCode = obj.
FullName
.GetHashCode();
System\TypeExtensions.cs (3)
54
if (type.FullName == typeName.
FullName
)
114
if (x.
FullName
== y.
FullName
)
System.Private.Windows.Core.Tests (11)
System\Private\Windows\Ole\BinaryFormatUtilitiesTests.cs (10)
241
Resolver = (TypeName typeName) => Type.GetType(typeName.
FullName
)
437
string fullName = typeName.
FullName
;
493
Resolver = (TypeName typeName) => typeName.
FullName
== typeof(DerivedClass).FullName
532
Resolver = (TypeName typeName) => typeName.
FullName
== typeof(MyStruct).FullName
581
Resolver = (TypeName typeName) => typeName.
FullName
== typeof(int).FullName
620
Resolver = (TypeName typeName) => typeName.
FullName
== typeof(int).FullName
716
string fullName = typeName.
FullName
;
752
string fullName = typeName.
FullName
;
1101
if (name.
FullName
!= typeName.
FullName
)
System\Reflection\Metadata\TypeNameComparerTests.cs (1)
77
string testName = $"{name.
FullName
}, {info.Name}, Version={info.Version!}, Culture=neutral, PublicKeyToken=null";
System.Reflection.Metadata (7)
System\Reflection\Metadata\TypeName.cs (7)
95
/// If <see cref="AssemblyName"/> returns null, simply returns <see cref="
FullName
"/>.
106
_assemblyQualifiedName =
FullName
;
165
/// names. For example, given "List<int>", the <see cref="
FullName
"/> property will return
168
/// the arity of the generic type. For example, given "Dictionary<,>", the <see cref="
FullName
"/>
170
/// the <see cref="
FullName
"/> property will return "System.Collections.Generic.Dictionary`2+Enumerator".
601
TypeNameParserHelpers.ThrowInvalidOperation_NotSimpleName(
FullName
);
670
TypeNameParserHelpers.ThrowInvalidOperation_NotSimpleName(
FullName
);
System.Resources.Extensions (4)
System\Resources\Extensions\BinaryFormat\BinaryFormattedObject.TypeResolver.cs (4)
47
if (_binder?.BindToType(typeName.AssemblyName.FullName, typeName.
FullName
) is Type binderType)
80
? assembly.GetType(typeName.
FullName
)
96
return assembly.GetType(typeName.
FullName
, throwOnError: false, ignoreCase: false);
103
return Type.GetType(typeName.
FullName
, ResolveSimpleAssemblyName, new TopLevelAssemblyTypeResolver(assembly).ResolveType, throwOnError: false);
System.Windows.Forms (4)
System\Resources\ResXSerializationBinder.cs (3)
66
type ??= _typeResolver.GetType(parsed.
FullName
);
90
typeName = string.Equals(parsed.
FullName
, serializedType.FullName, StringComparison.Ordinal)
92
: parsed.
FullName
;
System\Windows\Forms\OLE\Clipboard.cs (1)
243
/// <see cref="TypeName.
FullName
"/> property.
System.Windows.Forms.Tests (11)
System\Windows\Forms\BinaryFormat\WinFormsBinaryFormattedObjectTests.cs (2)
126
root.TypeName.
FullName
.Should().Be(typeof(Bitmap).FullName);
182
root.TypeName.
FullName
.Should().Be(typeof(ImageListStreamer).FullName);
System\Windows\Forms\ClipboardTests.cs (6)
780
string fullName = typeName.
FullName
;
888
(typeName) => typeName.
FullName
== typeof(uint[,]).FullName
1337
(TypeName name) => name.
FullName
== typeof(SerializableTestData).FullName ? typeof(SerializableTestData) : null,
1345
(TypeName name) => name.
FullName
== typeof(SerializableTestData).FullName ? typeof(SerializableTestData) : null,
1387
(TypeName name) => name.
FullName
== typeof(SerializableTestData).FullName ? typeof(SerializableTestData) : null,
1405
(TypeName name) => name.
FullName
== typeof(SerializableTestData).FullName ? typeof(SerializableTestData) : null,
System\Windows\Forms\NativeToWinFormsAdapterTests.cs (2)
497
string fullName = typeName.
FullName
;
556
string fullName = typeName.
FullName
;
System\Windows\Forms\Ole\BinaryFormatUtilitiesTests.cs (1)
79
string fullName = typeName.
FullName
;