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