Microsoft.AspNetCore.Hosting.xml
20.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
<?xml version="1.0"?>
<doc>
<assembly>
<name>Microsoft.AspNetCore.Hosting</name>
</assembly>
<members>
<member name="T:Microsoft.Extensions.RazorViews.BaseView">
<summary>
Infrastructure
</summary>
</member>
<member name="P:Microsoft.Extensions.RazorViews.BaseView.Context">
<summary>
The request context
</summary>
</member>
<member name="P:Microsoft.Extensions.RazorViews.BaseView.Request">
<summary>
The request
</summary>
</member>
<member name="P:Microsoft.Extensions.RazorViews.BaseView.Response">
<summary>
The response
</summary>
</member>
<member name="P:Microsoft.Extensions.RazorViews.BaseView.Output">
<summary>
The output stream
</summary>
</member>
<member name="P:Microsoft.Extensions.RazorViews.BaseView.HtmlEncoder">
<summary>
Html encoder used to encode content.
</summary>
</member>
<member name="P:Microsoft.Extensions.RazorViews.BaseView.UrlEncoder">
<summary>
Url encoder used to encode content.
</summary>
</member>
<member name="P:Microsoft.Extensions.RazorViews.BaseView.JavaScriptEncoder">
<summary>
JavaScript encoder used to encode content.
</summary>
</member>
<member name="M:Microsoft.Extensions.RazorViews.BaseView.ExecuteAsync(Microsoft.AspNetCore.Http.HttpContext)">
<summary>
Execute an individual request
</summary>
<param name="context"></param>
</member>
<member name="M:Microsoft.Extensions.RazorViews.BaseView.ExecuteAsync">
<summary>
Execute an individual request
</summary>
</member>
<member name="M:Microsoft.Extensions.RazorViews.BaseView.WriteLiteral(System.String)">
<summary>
Write the given value directly to the output
</summary>
<param name="value"></param>
</member>
<member name="M:Microsoft.Extensions.RazorViews.BaseView.WriteLiteral(System.Object)">
<summary>
Write the given value directly to the output
</summary>
<param name="value"></param>
</member>
<member name="M:Microsoft.Extensions.RazorViews.BaseView.WriteAttributeTo(System.IO.TextWriter,System.String,System.String,System.String,Microsoft.Extensions.RazorViews.AttributeValue[])">
<summary>
Writes the given attribute to the given writer
</summary>
<param name="writer">The <see cref="T:System.IO.TextWriter"/> instance to write to.</param>
<param name="name">The name of the attribute to write</param>
<param name="leader">The value of the prefix</param>
<param name="trailer">The value of the suffix</param>
<param name="values">The <see cref="T:Microsoft.Extensions.RazorViews.AttributeValue"/>s to write.</param>
</member>
<member name="M:Microsoft.Extensions.RazorViews.BaseView.Write(System.Object)">
<summary>
Convert to string and html encode
</summary>
<param name="value"></param>
</member>
<member name="M:Microsoft.Extensions.RazorViews.BaseView.Write(System.String)">
<summary>
Html encode and write
</summary>
<param name="value"></param>
</member>
<member name="M:Microsoft.Extensions.RazorViews.BaseView.Write(Microsoft.Extensions.RazorViews.HelperResult)">
<summary>
<see cref="M:Microsoft.Extensions.RazorViews.HelperResult.WriteTo(System.IO.TextWriter)"/> is invoked
</summary>
<param name="result">The <see cref="T:Microsoft.Extensions.RazorViews.HelperResult"/> to invoke</param>
</member>
<member name="M:Microsoft.Extensions.RazorViews.BaseView.WriteTo(System.IO.TextWriter,System.Object)">
<summary>
Writes the specified <paramref name="value"/> to <paramref name="writer"/>.
</summary>
<param name="writer">The <see cref="T:System.IO.TextWriter"/> instance to write to.</param>
<param name="value">The <see cref="T:System.Object"/> to write.</param>
<remarks>
<see cref="M:Microsoft.Extensions.RazorViews.HelperResult.WriteTo(System.IO.TextWriter)"/> is invoked for <see cref="T:Microsoft.Extensions.RazorViews.HelperResult"/> types.
For all other types, the encoded result of <see cref="M:System.Object.ToString"/> is written to the
<paramref name="writer"/>.
</remarks>
</member>
<member name="M:Microsoft.Extensions.RazorViews.BaseView.WriteTo(System.IO.TextWriter,System.String)">
<summary>
Writes the specified <paramref name="value"/> with HTML encoding to <paramref name="writer"/>.
</summary>
<param name="writer">The <see cref="T:System.IO.TextWriter"/> instance to write to.</param>
<param name="value">The <see cref="T:System.String"/> to write.</param>
</member>
<member name="M:Microsoft.Extensions.RazorViews.BaseView.WriteLiteralTo(System.IO.TextWriter,System.Object)">
<summary>
Writes the specified <paramref name="value"/> without HTML encoding to the <paramref name="writer"/>.
</summary>
<param name="writer">The <see cref="T:System.IO.TextWriter"/> instance to write to.</param>
<param name="value">The <see cref="T:System.Object"/> to write.</param>
</member>
<member name="M:Microsoft.Extensions.RazorViews.BaseView.WriteLiteralTo(System.IO.TextWriter,System.String)">
<summary>
Writes the specified <paramref name="value"/> without HTML encoding to <see cref="P:Microsoft.Extensions.RazorViews.BaseView.Output"/>.
</summary>
<param name="writer">The <see cref="T:System.IO.TextWriter"/> instance to write to.</param>
<param name="value">The <see cref="T:System.String"/> to write.</param>
</member>
<member name="T:Microsoft.Extensions.RazorViews.HelperResult">
<summary>
Represents a deferred write operation in a <see cref="T:Microsoft.Extensions.RazorViews.BaseView"/>.
</summary>
</member>
<member name="M:Microsoft.Extensions.RazorViews.HelperResult.#ctor(System.Action{System.IO.TextWriter})">
<summary>
Creates a new instance of <see cref="T:Microsoft.Extensions.RazorViews.HelperResult"/>.
</summary>
<param name="action">The delegate to invoke when <see cref="M:Microsoft.Extensions.RazorViews.HelperResult.WriteTo(System.IO.TextWriter)"/> is called.</param>
</member>
<member name="M:Microsoft.Extensions.RazorViews.HelperResult.WriteTo(System.IO.TextWriter)">
<summary>
Method invoked to produce content from the <see cref="T:Microsoft.Extensions.RazorViews.HelperResult"/>.
</summary>
<param name="writer">The <see cref="T:System.IO.TextWriter"/> instance to write to.</param>
</member>
<member name="P:Microsoft.Extensions.Internal.RuntimeEnvironment.OperatingSystemVersion">
<summary>
Don't use in shipping packages
</summary>
</member>
<member name="T:Microsoft.Extensions.StackTrace.Sources.ExceptionDetails">
<summary>
Contains details for individual exception messages.
</summary>
</member>
<member name="P:Microsoft.Extensions.StackTrace.Sources.ExceptionDetails.Error">
<summary>
An individual exception
</summary>
</member>
<member name="P:Microsoft.Extensions.StackTrace.Sources.ExceptionDetails.StackFrames">
<summary>
The generated stack frames
</summary>
</member>
<member name="P:Microsoft.Extensions.StackTrace.Sources.ExceptionDetails.ErrorMessage">
<summary>
Gets or sets the summary message.
</summary>
</member>
<member name="T:Microsoft.Extensions.StackTrace.Sources.StackFrameSourceCodeInfo">
<summary>
Contains the source code where the exception occurred.
</summary>
</member>
<member name="P:Microsoft.Extensions.StackTrace.Sources.StackFrameSourceCodeInfo.Function">
<summary>
Function containing instruction
</summary>
</member>
<member name="P:Microsoft.Extensions.StackTrace.Sources.StackFrameSourceCodeInfo.File">
<summary>
File containing the instruction
</summary>
</member>
<member name="P:Microsoft.Extensions.StackTrace.Sources.StackFrameSourceCodeInfo.Line">
<summary>
The line number of the instruction
</summary>
</member>
<member name="P:Microsoft.Extensions.StackTrace.Sources.StackFrameSourceCodeInfo.PreContextLine">
<summary>
The line preceeding the frame line
</summary>
</member>
<member name="P:Microsoft.Extensions.StackTrace.Sources.StackFrameSourceCodeInfo.PreContextCode">
<summary>
Lines of code before the actual error line(s).
</summary>
</member>
<member name="P:Microsoft.Extensions.StackTrace.Sources.StackFrameSourceCodeInfo.ContextCode">
<summary>
Line(s) of code responsible for the error.
</summary>
</member>
<member name="P:Microsoft.Extensions.StackTrace.Sources.StackFrameSourceCodeInfo.PostContextCode">
<summary>
Lines of code after the actual error line(s).
</summary>
</member>
<member name="P:Microsoft.Extensions.StackTrace.Sources.StackFrameSourceCodeInfo.ErrorDetails">
<summary>
Specific error details for this stack frame.
</summary>
</member>
<member name="T:Microsoft.AspNetCore.Hosting.WebHostBuilder">
<summary>
A builder for <see cref="T:Microsoft.AspNetCore.Hosting.IWebHost"/>
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Hosting.WebHostBuilder.#ctor">
<summary>
Initializes a new instance of the <see cref="T:Microsoft.AspNetCore.Hosting.WebHostBuilder"/> class.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Hosting.WebHostBuilder.UseSetting(System.String,System.String)">
<summary>
Add or replace a setting in the configuration.
</summary>
<param name="key">The key of the setting to add or replace.</param>
<param name="value">The value of the setting to add or replace.</param>
<returns>The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>.</returns>
</member>
<member name="M:Microsoft.AspNetCore.Hosting.WebHostBuilder.GetSetting(System.String)">
<summary>
Get the setting value from the configuration.
</summary>
<param name="key">The key of the setting to look up.</param>
<returns>The value the setting currently contains.</returns>
</member>
<member name="M:Microsoft.AspNetCore.Hosting.WebHostBuilder.UseLoggerFactory(Microsoft.Extensions.Logging.ILoggerFactory)">
<summary>
Specify the <see cref="T:Microsoft.Extensions.Logging.ILoggerFactory"/> to be used by the web host.
</summary>
<param name="loggerFactory">The <see cref="T:Microsoft.Extensions.Logging.ILoggerFactory"/> to be used.</param>
<returns>The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>.</returns>
</member>
<member name="M:Microsoft.AspNetCore.Hosting.WebHostBuilder.ConfigureServices(System.Action{Microsoft.Extensions.DependencyInjection.IServiceCollection})">
<summary>
Adds a delegate for configuring additional services for the host or web application. This may be called
multiple times.
</summary>
<param name="configureServices">A delegate for configuring the <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.</param>
<returns>The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>.</returns>
</member>
<member name="M:Microsoft.AspNetCore.Hosting.WebHostBuilder.ConfigureLogging(System.Action{Microsoft.Extensions.Logging.ILoggerFactory})">
<summary>
Adds a delegate for configuring the provided <see cref="T:Microsoft.Extensions.Logging.ILoggerFactory"/>. This may be called multiple times.
</summary>
<param name="configureLogging">The delegate that configures the <see cref="T:Microsoft.Extensions.Logging.ILoggerFactory"/>.</param>
<returns>The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>.</returns>
</member>
<member name="M:Microsoft.AspNetCore.Hosting.WebHostBuilder.Build">
<summary>
Builds the required services and an <see cref="T:Microsoft.AspNetCore.Hosting.IWebHost"/> which hosts a web application.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Hosting.WebHostBuilderExtensions.Configure(Microsoft.AspNetCore.Hosting.IWebHostBuilder,System.Action{Microsoft.AspNetCore.Builder.IApplicationBuilder})">
<summary>
Specify the startup method to be used to configure the web application.
</summary>
<param name="hostBuilder">The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/> to configure.</param>
<param name="configureApp">The delegate that configures the <see cref="T:Microsoft.AspNetCore.Builder.IApplicationBuilder"/>.</param>
<returns>The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>.</returns>
</member>
<member name="M:Microsoft.AspNetCore.Hosting.WebHostBuilderExtensions.UseStartup(Microsoft.AspNetCore.Hosting.IWebHostBuilder,System.Type)">
<summary>
Specify the startup type to be used by the web host.
</summary>
<param name="hostBuilder">The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/> to configure.</param>
<param name="startupType">The <see cref="T:System.Type"/> to be used.</param>
<returns>The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>.</returns>
</member>
<member name="M:Microsoft.AspNetCore.Hosting.WebHostBuilderExtensions.UseStartup``1(Microsoft.AspNetCore.Hosting.IWebHostBuilder)">
<summary>
Specify the startup type to be used by the web host.
</summary>
<param name="hostBuilder">The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/> to configure.</param>
<typeparam name ="TStartup">The type containing the startup methods for the application.</typeparam>
<returns>The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>.</returns>
</member>
<member name="M:Microsoft.AspNetCore.Hosting.WebHostExtensions.Run(Microsoft.AspNetCore.Hosting.IWebHost)">
<summary>
Runs a web application and block the calling thread until host shutdown.
</summary>
<param name="host">The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHost"/> to run.</param>
</member>
<member name="M:Microsoft.AspNetCore.Hosting.WebHostExtensions.Run(Microsoft.AspNetCore.Hosting.IWebHost,System.Threading.CancellationToken)">
<summary>
Runs a web application and block the calling thread until token is triggered or shutdown is triggered.
</summary>
<param name="host">The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHost"/> to run.</param>
<param name="token">The token to trigger shutdown.</param>
</member>
<member name="T:Microsoft.AspNetCore.Hosting.Internal.ApplicationLifetime">
<summary>
Allows consumers to perform cleanup during a graceful shutdown.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Hosting.Internal.ApplicationLifetime.ApplicationStarted">
<summary>
Triggered when the application host has fully started and is about to wait
for a graceful shutdown.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Hosting.Internal.ApplicationLifetime.ApplicationStopping">
<summary>
Triggered when the application host is performing a graceful shutdown.
Request may still be in flight. Shutdown will block until this event completes.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Hosting.Internal.ApplicationLifetime.ApplicationStopped">
<summary>
Triggered when the application host is performing a graceful shutdown.
All requests should be complete at this point. Shutdown will block
until this event completes.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Hosting.Internal.ApplicationLifetime.StopApplication">
<summary>
Signals the ApplicationStopping event and blocks until it completes.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Hosting.Internal.ApplicationLifetime.NotifyStarted">
<summary>
Signals the ApplicationStarted event and blocks until it completes.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Hosting.Internal.ApplicationLifetime.NotifyStopped">
<summary>
Signals the ApplicationStopped event and blocks until it completes.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Hosting.Resources.ErrorPageHtml_Title">
<summary>
Internal Server Error
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Hosting.Resources.FormatErrorPageHtml_Title">
<summary>
Internal Server Error
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Hosting.Resources.ErrorPageHtml_UnhandledException">
<summary>
An error occurred while starting the application.
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Hosting.Resources.FormatErrorPageHtml_UnhandledException">
<summary>
An error occurred while starting the application.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Hosting.Resources.ErrorPageHtml_UnknownLocation">
<summary>
Unknown location
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Hosting.Resources.FormatErrorPageHtml_UnknownLocation">
<summary>
Unknown location
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Hosting.Resources.WebHostBuilder_SingleInstance">
<summary>
WebHostBuilder allows creation only of a single instance of WebHost
</summary>
</member>
<member name="M:Microsoft.AspNetCore.Hosting.Resources.FormatWebHostBuilder_SingleInstance">
<summary>
WebHostBuilder allows creation only of a single instance of WebHost
</summary>
</member>
<member name="T:Microsoft.AspNetCore.Hosting.Views.ErrorPageModel">
<summary>
Holds data to be displayed on the error page.
</summary>
</member>
<member name="P:Microsoft.AspNetCore.Hosting.Views.ErrorPageModel.ErrorDetails">
<summary>
Detailed information about each exception in the stack.
</summary>
</member>
</members>
</doc>