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