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