4 references to FullName
System.Reflection.Emit (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\SymbolType.cs (1)
359
public override string? FullName => TypeNameBuilder.ToString(this, TypeNameBuilder.Format.
FullName
);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\TypeNameBuilder.cs (2)
238
if (format == Format.
FullName
|| format == Format.AssemblyQualifiedName)
297
Format genericArgumentsFormat = format == Format.
FullName
? Format.AssemblyQualifiedName : format;
System\Reflection\Emit\TypeBuilderImpl.cs (1)
603
public override string? FullName => field ??= TypeNameBuilder.ToString(this, TypeNameBuilder.Format.
FullName
);