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