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; }
19 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)
GetDocument.Insider (4)
Commands\GetDocumentCommandWorker.cs (1)
59
var entryPointType = assembly.
EntryPoint
?.DeclaringType;
src\d32e4d6bbe9ef47f\HostFactoryResolver.cs (3)
69
if (assembly.
EntryPoint
is null)
93
return args => new HostingListener(args, assembly.
EntryPoint
, waitTimeout ?? s_defaultWaitTimeout, stopApplication, configureHostBuilder, entrypointCompleted, arbitraryActions).CreateHost();
98
var programType = assembly?.
EntryPoint
?.DeclaringType;
Microsoft.AspNetCore.Mvc.Testing (5)
src\d32e4d6bbe9ef47f\HostFactoryResolver.cs (3)
69
if (assembly.
EntryPoint
is null)
93
return args => new HostingListener(args, assembly.
EntryPoint
, waitTimeout ?? s_defaultWaitTimeout, stopApplication, configureHostBuilder, entrypointCompleted, arbitraryActions).CreateHost();
98
var programType = assembly?.
EntryPoint
?.DeclaringType;
WebApplicationFactory.cs (2)
347
typeof(TEntryPoint).Assembly.
EntryPoint
!.DeclaringType!.FullName,
566
if (typeof(TEntryPoint).Assembly.
EntryPoint
== null)
Microsoft.AspNetCore.TestHost (3)
src\d32e4d6bbe9ef47f\HostFactoryResolver.cs (3)
69
if (assembly.
EntryPoint
is null)
93
return args => new HostingListener(args, assembly.
EntryPoint
, waitTimeout ?? s_defaultWaitTimeout, stopApplication, configureHostBuilder, entrypointCompleted, arbitraryActions).CreateHost();
98
var programType = assembly?.
EntryPoint
?.DeclaringType;
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)
1310
s_mainType = exe.
EntryPoint
?.ReflectedType;