5 overrides of FullName
System.Private.CoreLib (5)
System\Reflection\Runtime\TypeInfos\RuntimeConstructedGenericTypeInfo.cs (1)
56
public sealed override string
FullName
System\Reflection\Runtime\TypeInfos\RuntimeFunctionPointerTypeInfo.cs (1)
54
public override string
FullName
=> null!;
System\Reflection\Runtime\TypeInfos\RuntimeGenericParameterTypeInfo.cs (1)
52
public sealed override string
FullName
System\Reflection\Runtime\TypeInfos\RuntimeHasElementTypeInfo.cs (1)
66
public sealed override string
FullName
System\Reflection\Runtime\TypeInfos\RuntimeNamedTypeInfo.cs (1)
88
public sealed override string
FullName
10 references to FullName
System.Private.CoreLib (10)
System\Reflection\Runtime\General\TypeResolver.NativeFormat.cs (1)
198
exception = Helpers.CreateTypeLoadException(outerTypeInfo.
FullName
+ "+" + name, outerTypeInfo.Assembly.FullName);
System\Reflection\Runtime\TypeInfos\RuntimeConstructedGenericTypeInfo.cs (2)
65
fullName.Append(GenericTypeDefinitionTypeInfo.
FullName
);
155
sb.Append(GenericTypeDefinitionTypeInfo.
FullName
);
System\Reflection\Runtime\TypeInfos\RuntimeHasElementTypeInfo.cs (1)
70
string elementFullName = _key.ElementType.
FullName
;
System\Reflection\Runtime\TypeInfos\RuntimeNamedTypeInfo.cs (1)
101
string? declaringTypeFullName = declaringType.
FullName
;
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.cs (1)
69
string fullName =
FullName
;
System\Reflection\Runtime\TypeInfos\RuntimeTypeInfo.InvokeMember.cs (3)
229
throw new MissingFieldException(
FullName
, name);
384
throw new MissingMethodException(
FullName
, name);
398
throw new MissingMethodException(
FullName
, name);
System\RuntimeType.NativeAot.cs (1)
842
public override string? FullName => GetRuntimeTypeInfo().
FullName
;