4 overrides of EntryPoint
System.Private.CoreLib (2)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\AssemblyBuilder.cs (1)
59public override MethodInfo? EntryPoint => null;
System\Reflection\Runtime\Assemblies\RuntimeAssemblyInfo.cs (1)
178public abstract override MethodInfo EntryPoint { get; }
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingAssembly.cs (1)
89public override MethodInfo? EntryPoint
System.Reflection.MetadataLoadContext (1)
System\Reflection\TypeLoading\Assemblies\RoAssembly.cs (1)
165public abstract override MethodInfo? EntryPoint { get; }
7 references to EntryPoint
Aspire.Hosting.Testing (3)
DistributedApplicationEntryPointInvoker.cs (2)
25if (assembly.EntryPoint is null) 34assembly.EntryPoint,
DistributedApplicationFactory.cs (1)
394if (entryPoint.Assembly.EntryPoint == null)
System.Configuration.ConfigurationManager (1)
System\Configuration\ClientConfigPaths.cs (1)
320MethodInfo entryPoint = exeAssembly.EntryPoint;
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\AppDomain.cs (1)
145MethodInfo entry = assembly.EntryPoint ??
System.Reflection.Context (1)
System\Reflection\Context\Delegation\DelegatingAssembly.cs (1)
91get { return UnderlyingAssembly.EntryPoint; }
System.Windows.Forms (1)
System\Windows\Forms\Application.cs (1)
1156s_mainType = exe.EntryPoint?.ReflectedType;