4 overrides of EntryPoint
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Reflection\Emit\AssemblyBuilder.cs (1)
59
public override MethodInfo?
EntryPoint
=> null;
src\System\Reflection\RuntimeAssembly.cs (1)
173
public override MethodInfo?
EntryPoint
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)
166
public abstract override MethodInfo?
EntryPoint
{ get; }
25 references to EntryPoint
Aspire.Hosting.Testing (2)
DistributedApplicationEntryPointInvoker.cs (2)
25
if (assembly.
EntryPoint
is null)
34
assembly.
EntryPoint
,
GetDocument.Insider (4)
.packages\microsoft.extensions.hostfactoryresolver.sources\10.0.0-preview.5.25256.101\contentFiles\cs\netstandard2.0\HostFactoryResolver.cs (3)
68
if (assembly.
EntryPoint
is null)
92
return args => new HostingListener(args, assembly.
EntryPoint
, waitTimeout ?? s_defaultWaitTimeout, stopApplication, configureHostBuilder, entrypointCompleted).CreateHost();
97
var programType = assembly?.
EntryPoint
?.DeclaringType;
Commands\GetDocumentCommandWorker.cs (1)
59
var entryPointType = assembly.
EntryPoint
?.DeclaringType;
Microsoft.AspNetCore.Http.Extensions.Tests (3)
ValidationsGenerator\ValidationsGeneratorTestBase.cs (3)
270
if (assembly.
EntryPoint
is null)
275
return args => new HostingListener(args, assembly.
EntryPoint
, waitTimeout == default ? s_defaultWaitTimeout : waitTimeout, stopApplication, configureHostBuilder, entrypointCompleted).CreateHost();
280
var programType = assembly.
EntryPoint
.DeclaringType;
Microsoft.AspNetCore.Mvc.Testing (5)
.packages\microsoft.extensions.hostfactoryresolver.sources\10.0.0-preview.5.25256.101\contentFiles\cs\netstandard2.0\HostFactoryResolver.cs (3)
68
if (assembly.
EntryPoint
is null)
92
return args => new HostingListener(args, assembly.
EntryPoint
, waitTimeout ?? s_defaultWaitTimeout, stopApplication, configureHostBuilder, entrypointCompleted).CreateHost();
97
var programType = assembly?.
EntryPoint
?.DeclaringType;
WebApplicationFactory.cs (2)
296
typeof(TEntryPoint).Assembly.
EntryPoint
!.DeclaringType!.FullName,
505
if (typeof(TEntryPoint).Assembly.
EntryPoint
== null)
Microsoft.AspNetCore.OpenApi.SourceGenerators.Tests (3)
SnapshotTestHelper.cs (3)
278
if (assembly.
EntryPoint
is null)
283
return args => new HostingListener(args, assembly.
EntryPoint
, waitTimeout == default ? s_defaultWaitTimeout : waitTimeout, stopApplication, configureHostBuilder, entrypointCompleted).CreateHost();
288
var programType = assembly.
EntryPoint
.DeclaringType;
Microsoft.AspNetCore.TestHost (3)
.packages\microsoft.extensions.hostfactoryresolver.sources\10.0.0-preview.5.25256.101\contentFiles\cs\netstandard2.0\HostFactoryResolver.cs (3)
68
if (assembly.
EntryPoint
is null)
92
return args => new HostingListener(args, assembly.
EntryPoint
, waitTimeout ?? s_defaultWaitTimeout, stopApplication, configureHostBuilder, entrypointCompleted).CreateHost();
97
var programType = assembly?.
EntryPoint
?.DeclaringType;
Microsoft.CodeAnalysis.Test.Utilities (1)
Platform\CoreClr\TestExecutionLoadContext.cs (1)
67
var entryPoint = mainAssembly.
EntryPoint
;
System.Configuration.ConfigurationManager (1)
System\Configuration\ClientConfigPaths.cs (1)
320
MethodInfo entryPoint = exeAssembly.
EntryPoint
;
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\AppDomain.cs (1)
137
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)
1120
s_mainType = exe.
EntryPoint
?.ReflectedType;