@@ -71,138 +71,6 @@ public partial interface IApplicationBuilderFactory
71
71
Microsoft . AspNetCore . Builder . IApplicationBuilder CreateBuilder ( Microsoft . AspNetCore . Http . Features . IFeatureCollection serverFeatures ) ;
72
72
}
73
73
}
74
- namespace Microsoft . AspNetCore . Hosting . Internal
75
- {
76
- public partial class ApplicationLifetime : Microsoft . AspNetCore . Hosting . IApplicationLifetime , Microsoft . Extensions . Hosting . IApplicationLifetime , Microsoft . Extensions . Hosting . IHostApplicationLifetime
77
- {
78
- public ApplicationLifetime ( Microsoft . Extensions . Logging . ILogger < Microsoft . AspNetCore . Hosting . Internal . ApplicationLifetime > logger ) { }
79
- public System . Threading . CancellationToken ApplicationStarted { get { throw null ; } }
80
- public System . Threading . CancellationToken ApplicationStopped { get { throw null ; } }
81
- public System . Threading . CancellationToken ApplicationStopping { get { throw null ; } }
82
- public void NotifyStarted ( ) { }
83
- public void NotifyStopped ( ) { }
84
- public void StopApplication ( ) { }
85
- }
86
- public partial class ConfigureBuilder
87
- {
88
- public ConfigureBuilder ( System . Reflection . MethodInfo configure ) { }
89
- public System . Reflection . MethodInfo MethodInfo { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
90
- public System . Action < Microsoft . AspNetCore . Builder . IApplicationBuilder > Build ( object instance ) { throw null ; }
91
- }
92
- public partial class ConfigureContainerBuilder
93
- {
94
- public ConfigureContainerBuilder ( System . Reflection . MethodInfo configureContainerMethod ) { }
95
- public System . Func < System . Action < object > , System . Action < object > > ConfigureContainerFilters { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
96
- public System . Reflection . MethodInfo MethodInfo { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
97
- public System . Action < object > Build ( object instance ) { throw null ; }
98
- public System . Type GetContainerType ( ) { throw null ; }
99
- }
100
- public partial class ConfigureServicesBuilder
101
- {
102
- public ConfigureServicesBuilder ( System . Reflection . MethodInfo configureServices ) { }
103
- public System . Reflection . MethodInfo MethodInfo { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
104
- public System . Func < System . Func < Microsoft . Extensions . DependencyInjection . IServiceCollection , System . IServiceProvider > , System . Func < Microsoft . Extensions . DependencyInjection . IServiceCollection , System . IServiceProvider > > StartupServiceFilters { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
105
- public System . Func < Microsoft . Extensions . DependencyInjection . IServiceCollection , System . IServiceProvider > Build ( object instance ) { throw null ; }
106
- }
107
- public partial class ConventionBasedStartup : Microsoft . AspNetCore . Hosting . IStartup
108
- {
109
- public ConventionBasedStartup ( Microsoft . AspNetCore . Hosting . Internal . StartupMethods methods ) { }
110
- public void Configure ( Microsoft . AspNetCore . Builder . IApplicationBuilder app ) { }
111
- public System . IServiceProvider ConfigureServices ( Microsoft . Extensions . DependencyInjection . IServiceCollection services ) { throw null ; }
112
- }
113
- public partial class HostedServiceExecutor
114
- {
115
- public HostedServiceExecutor ( Microsoft . Extensions . Logging . ILogger < Microsoft . AspNetCore . Hosting . Internal . HostedServiceExecutor > logger , System . Collections . Generic . IEnumerable < Microsoft . Extensions . Hosting . IHostedService > services ) { }
116
- public System . Threading . Tasks . Task StartAsync ( System . Threading . CancellationToken token ) { throw null ; }
117
- public System . Threading . Tasks . Task StopAsync ( System . Threading . CancellationToken token ) { throw null ; }
118
- }
119
- public partial class HostingApplication : Microsoft . AspNetCore . Hosting . Server . IHttpApplication < Microsoft . AspNetCore . Hosting . Internal . HostingApplication . Context >
120
- {
121
- public HostingApplication ( Microsoft . AspNetCore . Http . RequestDelegate application , Microsoft . Extensions . Logging . ILogger logger , System . Diagnostics . DiagnosticListener diagnosticSource , Microsoft . AspNetCore . Http . IHttpContextFactory httpContextFactory ) { }
122
- public Microsoft . AspNetCore . Hosting . Internal . HostingApplication . Context CreateContext ( Microsoft . AspNetCore . Http . Features . IFeatureCollection contextFeatures ) { throw null ; }
123
- public void DisposeContext ( Microsoft . AspNetCore . Hosting . Internal . HostingApplication . Context context , System . Exception exception ) { }
124
- public System . Threading . Tasks . Task ProcessRequestAsync ( Microsoft . AspNetCore . Hosting . Internal . HostingApplication . Context context ) { throw null ; }
125
- [ System . Runtime . InteropServices . StructLayoutAttribute ( System . Runtime . InteropServices . LayoutKind . Sequential ) ]
126
- public partial struct Context
127
- {
128
- private object _dummy ;
129
- private int _dummyPrimitive ;
130
- public System . Diagnostics . Activity Activity { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
131
- public bool EventLogEnabled { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
132
- public Microsoft . AspNetCore . Http . HttpContext HttpContext { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
133
- public System . IDisposable Scope { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
134
- public long StartTimestamp { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
135
- }
136
- }
137
- public partial class HostingEnvironment : Microsoft . AspNetCore . Hosting . IHostingEnvironment , Microsoft . AspNetCore . Hosting . IWebHostEnvironment , Microsoft . Extensions . Hosting . IHostEnvironment , Microsoft . Extensions . Hosting . IHostingEnvironment
138
- {
139
- public HostingEnvironment ( ) { }
140
- public string ApplicationName { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
141
- public Microsoft . Extensions . FileProviders . IFileProvider ContentRootFileProvider { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
142
- public string ContentRootPath { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
143
- public string EnvironmentName { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
144
- public Microsoft . Extensions . FileProviders . IFileProvider WebRootFileProvider { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
145
- public string WebRootPath { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
146
- }
147
- public static partial class HostingEnvironmentExtensions
148
- {
149
- public static void Initialize ( this Microsoft . AspNetCore . Hosting . IHostingEnvironment hostingEnvironment , string contentRootPath , Microsoft . AspNetCore . Hosting . Internal . WebHostOptions options ) { }
150
- public static void Initialize ( this Microsoft . AspNetCore . Hosting . IWebHostEnvironment hostingEnvironment , string contentRootPath , Microsoft . AspNetCore . Hosting . Internal . WebHostOptions options ) { }
151
- }
152
- public sealed partial class HostingEventSource : System . Diagnostics . Tracing . EventSource
153
- {
154
- internal HostingEventSource ( ) { }
155
- public static readonly Microsoft . AspNetCore . Hosting . Internal . HostingEventSource Log ;
156
- [ System . Diagnostics . Tracing . EventAttribute ( 1 , Level = System . Diagnostics . Tracing . EventLevel . Informational ) ]
157
- public void HostStart ( ) { }
158
- [ System . Diagnostics . Tracing . EventAttribute ( 2 , Level = System . Diagnostics . Tracing . EventLevel . Informational ) ]
159
- public void HostStop ( ) { }
160
- protected override void OnEventCommand ( System . Diagnostics . Tracing . EventCommandEventArgs command ) { }
161
- [ System . Diagnostics . Tracing . EventAttribute ( 3 , Level = System . Diagnostics . Tracing . EventLevel . Informational ) ]
162
- public void RequestStart ( string method , string path ) { }
163
- [ System . Runtime . CompilerServices . MethodImpl ( System . Runtime . CompilerServices . MethodImplOptions . NoInlining ) ] [ System . Diagnostics . Tracing . EventAttribute ( 4 , Level = System . Diagnostics . Tracing . EventLevel . Informational ) ]
164
- public void RequestStop ( ) { }
165
- [ System . Runtime . CompilerServices . MethodImpl ( System . Runtime . CompilerServices . MethodImplOptions . NoInlining ) ] [ System . Diagnostics . Tracing . EventAttribute ( 5 , Level = System . Diagnostics . Tracing . EventLevel . Error ) ]
166
- public void UnhandledException ( ) { }
167
- }
168
- public partial class StartupLoader
169
- {
170
- public StartupLoader ( ) { }
171
- public static System . Type FindStartupType ( string startupAssemblyName , string environmentName ) { throw null ; }
172
- public static Microsoft . AspNetCore . Hosting . Internal . StartupMethods LoadMethods ( System . IServiceProvider hostingServiceProvider , System . Type startupType , string environmentName ) { throw null ; }
173
- }
174
- public partial class StartupMethods
175
- {
176
- public StartupMethods ( object instance , System . Action < Microsoft . AspNetCore . Builder . IApplicationBuilder > configure , System . Func < Microsoft . Extensions . DependencyInjection . IServiceCollection , System . IServiceProvider > configureServices ) { }
177
- public System . Action < Microsoft . AspNetCore . Builder . IApplicationBuilder > ConfigureDelegate { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
178
- public System . Func < Microsoft . Extensions . DependencyInjection . IServiceCollection , System . IServiceProvider > ConfigureServicesDelegate { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
179
- public object StartupInstance { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
180
- }
181
- public partial class WebHostOptions
182
- {
183
- public WebHostOptions ( ) { }
184
- public WebHostOptions ( Microsoft . Extensions . Configuration . IConfiguration configuration ) { }
185
- public WebHostOptions ( Microsoft . Extensions . Configuration . IConfiguration configuration , string applicationNameFallback ) { }
186
- public string ApplicationName { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
187
- public bool CaptureStartupErrors { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
188
- public string ContentRootPath { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
189
- public bool DetailedErrors { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
190
- public string Environment { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
191
- public System . Collections . Generic . IReadOnlyList < string > HostingStartupAssemblies { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
192
- public System . Collections . Generic . IReadOnlyList < string > HostingStartupExcludeAssemblies { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
193
- public bool PreventHostingStartup { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
194
- public System . TimeSpan ShutdownTimeout { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
195
- public string StartupAssembly { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
196
- public bool SuppressStatusMessages { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
197
- public string WebRoot { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
198
- public System . Collections . Generic . IEnumerable < string > GetFinalHostingStartupAssemblies ( ) { throw null ; }
199
- }
200
- public partial class WebHostUtilities
201
- {
202
- public WebHostUtilities ( ) { }
203
- public static bool ParseBool ( Microsoft . Extensions . Configuration . IConfiguration configuration , string key ) { throw null ; }
204
- }
205
- }
206
74
namespace Microsoft . AspNetCore . Hosting . Server . Features
207
75
{
208
76
public partial class ServerAddressesFeature : Microsoft . AspNetCore . Hosting . Server . Features . IServerAddressesFeature
0 commit comments