32 references to FullName
ILCompiler.TypeSystem (2)
src\runtime\src\coreclr\tools\Common\TypeSystem\Common\Utilities\CustomAttributeTypeNameParser.cs (2)
179
ThrowHelper.ThrowTypeLoadException(typeName.
FullName
, module);
195
string fullName = TypeName.Unescape(typeName.
FullName
);
illink (1)
Linker\TypeNameResolver.cs (1)
153
return module.ResolveType(TypeName.Unescape(typeName.
FullName
), _metadataResolver);
Microsoft.Private.Windows.Core (4)
System\Reflection\Metadata\TypeNameComparer.cs (1)
71
hashCode = obj.
FullName
.GetHashCode();
System\TypeExtensions.cs (3)
53
if (type.FullName == typeName.
FullName
)
113
if (x.
FullName
== y.
FullName
)
PresentationCore (1)
System\Windows\clipboard.cs (1)
379
/// <see cref="TypeName.
FullName
"/> property.
System.Formats.Nrbf (4)
System\Formats\Nrbf\SerializationRecord.cs (1)
108
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 (5)
System\Private\Windows\Nrbf\SerializationRecordExtensions.cs (1)
613
typeName.
FullName
,
System\Reflection\Metadata\TypeNameComparer.cs (1)
71
hashCode = obj.
FullName
.GetHashCode();
System\TypeExtensions.cs (3)
53
if (type.FullName == typeName.
FullName
)
113
if (x.
FullName
== y.
FullName
)
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.