Microsoft.AspNetCore.Hosting.Abstractions.xml 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353
  1. <?xml version="1.0"?>
  2. <doc>
  3. <assembly>
  4. <name>Microsoft.AspNetCore.Hosting.Abstractions</name>
  5. </assembly>
  6. <members>
  7. <member name="T:Microsoft.AspNetCore.Hosting.EnvironmentName">
  8. <summary>
  9. Commonly used environment names.
  10. </summary>
  11. </member>
  12. <member name="M:Microsoft.AspNetCore.Hosting.HostingAbstractionsWebHostBuilderExtensions.UseConfiguration(Microsoft.AspNetCore.Hosting.IWebHostBuilder,Microsoft.Extensions.Configuration.IConfiguration)">
  13. <summary>
  14. Use the given configuration settings on the web host.
  15. </summary>
  16. <param name="hostBuilder">The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/> to configure.</param>
  17. <param name="configuration">The <see cref="T:Microsoft.Extensions.Configuration.IConfiguration"/> containing settings to be used.</param>
  18. <returns>The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>.</returns>
  19. </member>
  20. <member name="M:Microsoft.AspNetCore.Hosting.HostingAbstractionsWebHostBuilderExtensions.CaptureStartupErrors(Microsoft.AspNetCore.Hosting.IWebHostBuilder,System.Boolean)">
  21. <summary>
  22. Set whether startup errors should be captured in the configuration settings of the web host.
  23. When enabled, startup exceptions will be caught and an error page will be returned. If disabled, startup exceptions will be propagated.
  24. </summary>
  25. <param name="hostBuilder">The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/> to configure.</param>
  26. <param name="captureStartupErrors"><c>true</c> to use startup error page; otherwise <c>false</c>.</param>
  27. <returns>The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>.</returns>
  28. </member>
  29. <member name="M:Microsoft.AspNetCore.Hosting.HostingAbstractionsWebHostBuilderExtensions.UseStartup(Microsoft.AspNetCore.Hosting.IWebHostBuilder,System.String)">
  30. <summary>
  31. Specify the assembly containing the startup type to be used by the web host.
  32. </summary>
  33. <param name="hostBuilder">The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/> to configure.</param>
  34. <param name="startupAssemblyName">The name of the assembly containing the startup type.</param>
  35. <returns>The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>.</returns>
  36. </member>
  37. <member name="M:Microsoft.AspNetCore.Hosting.HostingAbstractionsWebHostBuilderExtensions.UseServer(Microsoft.AspNetCore.Hosting.IWebHostBuilder,Microsoft.AspNetCore.Hosting.Server.IServer)">
  38. <summary>
  39. Specify the server to be used by the web host.
  40. </summary>
  41. <param name="hostBuilder">The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/> to configure.</param>
  42. <param name="server">The <see cref="T:Microsoft.AspNetCore.Hosting.Server.IServer"/> to be used.</param>
  43. <returns>The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>.</returns>
  44. </member>
  45. <member name="M:Microsoft.AspNetCore.Hosting.HostingAbstractionsWebHostBuilderExtensions.UseEnvironment(Microsoft.AspNetCore.Hosting.IWebHostBuilder,System.String)">
  46. <summary>
  47. Specify the environment to be used by the web host.
  48. </summary>
  49. <param name="hostBuilder">The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/> to configure.</param>
  50. <param name="environment">The environment to host the application in.</param>
  51. <returns>The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>.</returns>
  52. </member>
  53. <member name="M:Microsoft.AspNetCore.Hosting.HostingAbstractionsWebHostBuilderExtensions.UseContentRoot(Microsoft.AspNetCore.Hosting.IWebHostBuilder,System.String)">
  54. <summary>
  55. Specify the content root directory to be used by the web host.
  56. </summary>
  57. <param name="hostBuilder">The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/> to configure.</param>
  58. <param name="contentRoot">Path to root directory of the application.</param>
  59. <returns>The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>.</returns>
  60. </member>
  61. <member name="M:Microsoft.AspNetCore.Hosting.HostingAbstractionsWebHostBuilderExtensions.UseWebRoot(Microsoft.AspNetCore.Hosting.IWebHostBuilder,System.String)">
  62. <summary>
  63. Specify the webroot directory to be used by the web host.
  64. </summary>
  65. <param name="hostBuilder">The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/> to configure.</param>
  66. <param name="webRoot">Path to the root directory used by the web server.</param>
  67. <returns>The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>.</returns>
  68. </member>
  69. <member name="M:Microsoft.AspNetCore.Hosting.HostingAbstractionsWebHostBuilderExtensions.UseUrls(Microsoft.AspNetCore.Hosting.IWebHostBuilder,System.String[])">
  70. <summary>
  71. Specify the urls the web host will listen on.
  72. </summary>
  73. <param name="hostBuilder">The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/> to configure.</param>
  74. <param name="urls">The urls the hosted application will listen on.</param>
  75. <returns>The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>.</returns>
  76. </member>
  77. <member name="M:Microsoft.AspNetCore.Hosting.HostingAbstractionsWebHostBuilderExtensions.PreferHostingUrls(Microsoft.AspNetCore.Hosting.IWebHostBuilder,System.Boolean)">
  78. <summary>
  79. Indicate whether the host should listen on the URLs configured on the <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>
  80. instead of those configured on the <see cref="T:Microsoft.AspNetCore.Hosting.Server.IServer"/>.
  81. </summary>
  82. <param name="hostBuilder">The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/> to configure.</param>
  83. <param name="preferHostingUrls"><c>true</c> to prefer URLs configured on the <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>; otherwise <c>false</c>.</param>
  84. <returns>The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>.</returns>
  85. </member>
  86. <member name="M:Microsoft.AspNetCore.Hosting.HostingAbstractionsWebHostBuilderExtensions.SuppressStatusMessages(Microsoft.AspNetCore.Hosting.IWebHostBuilder,System.Boolean)">
  87. <summary>
  88. Specify if startup status messages should be suppressed.
  89. </summary>
  90. <param name="hostBuilder">The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/> to configure.</param>
  91. <param name="suppressStatusMessages"><c>true</c> to suppress writing of hosting startup status messages; otherwise <c>false</c>.</param>
  92. <returns>The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>.</returns>
  93. </member>
  94. <member name="M:Microsoft.AspNetCore.Hosting.HostingAbstractionsWebHostBuilderExtensions.UseShutdownTimeout(Microsoft.AspNetCore.Hosting.IWebHostBuilder,System.TimeSpan)">
  95. <summary>
  96. Specify the amount of time to wait for the web host to shutdown.
  97. </summary>
  98. <param name="hostBuilder">The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/> to configure.</param>
  99. <param name="timeout">The amount of time to wait for server shutdown.</param>
  100. <returns>The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>.</returns>
  101. </member>
  102. <member name="M:Microsoft.AspNetCore.Hosting.HostingAbstractionsWebHostBuilderExtensions.Start(Microsoft.AspNetCore.Hosting.IWebHostBuilder,System.String[])">
  103. <summary>
  104. Start the web host and listen on the specified urls.
  105. </summary>
  106. <param name="hostBuilder">The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/> to start.</param>
  107. <param name="urls">The urls the hosted application will listen on.</param>
  108. <returns>The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>.</returns>
  109. </member>
  110. <member name="T:Microsoft.AspNetCore.Hosting.HostingEnvironmentExtensions">
  111. <summary>
  112. Extension methods for <see cref="T:Microsoft.AspNetCore.Hosting.IHostingEnvironment"/>.
  113. </summary>
  114. </member>
  115. <member name="M:Microsoft.AspNetCore.Hosting.HostingEnvironmentExtensions.IsDevelopment(Microsoft.AspNetCore.Hosting.IHostingEnvironment)">
  116. <summary>
  117. Checks if the current hosting environment name is <see cref="F:Microsoft.AspNetCore.Hosting.EnvironmentName.Development"/>.
  118. </summary>
  119. <param name="hostingEnvironment">An instance of <see cref="T:Microsoft.AspNetCore.Hosting.IHostingEnvironment"/>.</param>
  120. <returns>True if the environment name is <see cref="F:Microsoft.AspNetCore.Hosting.EnvironmentName.Development"/>, otherwise false.</returns>
  121. </member>
  122. <member name="M:Microsoft.AspNetCore.Hosting.HostingEnvironmentExtensions.IsStaging(Microsoft.AspNetCore.Hosting.IHostingEnvironment)">
  123. <summary>
  124. Checks if the current hosting environment name is <see cref="F:Microsoft.AspNetCore.Hosting.EnvironmentName.Staging"/>.
  125. </summary>
  126. <param name="hostingEnvironment">An instance of <see cref="T:Microsoft.AspNetCore.Hosting.IHostingEnvironment"/>.</param>
  127. <returns>True if the environment name is <see cref="F:Microsoft.AspNetCore.Hosting.EnvironmentName.Staging"/>, otherwise false.</returns>
  128. </member>
  129. <member name="M:Microsoft.AspNetCore.Hosting.HostingEnvironmentExtensions.IsProduction(Microsoft.AspNetCore.Hosting.IHostingEnvironment)">
  130. <summary>
  131. Checks if the current hosting environment name is <see cref="F:Microsoft.AspNetCore.Hosting.EnvironmentName.Production"/>.
  132. </summary>
  133. <param name="hostingEnvironment">An instance of <see cref="T:Microsoft.AspNetCore.Hosting.IHostingEnvironment"/>.</param>
  134. <returns>True if the environment name is <see cref="F:Microsoft.AspNetCore.Hosting.EnvironmentName.Production"/>, otherwise false.</returns>
  135. </member>
  136. <member name="M:Microsoft.AspNetCore.Hosting.HostingEnvironmentExtensions.IsEnvironment(Microsoft.AspNetCore.Hosting.IHostingEnvironment,System.String)">
  137. <summary>
  138. Compares the current hosting environment name against the specified value.
  139. </summary>
  140. <param name="hostingEnvironment">An instance of <see cref="T:Microsoft.AspNetCore.Hosting.IHostingEnvironment"/>.</param>
  141. <param name="environmentName">Environment name to validate against.</param>
  142. <returns>True if the specified name is the same as the current environment, otherwise false.</returns>
  143. </member>
  144. <member name="T:Microsoft.AspNetCore.Hosting.HostingStartupAttribute">
  145. <summary>
  146. Marker attribute indicating an implementation of <see cref="T:Microsoft.AspNetCore.Hosting.IHostingStartup"/> that will be loaded and executed when building an <see cref="T:Microsoft.AspNetCore.Hosting.IWebHost"/>.
  147. </summary>
  148. </member>
  149. <member name="M:Microsoft.AspNetCore.Hosting.HostingStartupAttribute.#ctor(System.Type)">
  150. <summary>
  151. Constructs the <see cref="T:Microsoft.AspNetCore.Hosting.HostingStartupAttribute"/> with the specified type.
  152. </summary>
  153. <param name="hostingStartupType">A type that implements <see cref="T:Microsoft.AspNetCore.Hosting.IHostingStartup"/>.</param>
  154. </member>
  155. <member name="P:Microsoft.AspNetCore.Hosting.HostingStartupAttribute.HostingStartupType">
  156. <summary>
  157. The implementation of <see cref="T:Microsoft.AspNetCore.Hosting.IHostingStartup"/> that should be loaded when
  158. starting an application.
  159. </summary>
  160. </member>
  161. <member name="T:Microsoft.AspNetCore.Hosting.IApplicationLifetime">
  162. <summary>
  163. Allows consumers to perform cleanup during a graceful shutdown.
  164. </summary>
  165. </member>
  166. <member name="P:Microsoft.AspNetCore.Hosting.IApplicationLifetime.ApplicationStarted">
  167. <summary>
  168. Triggered when the application host has fully started and is about to wait
  169. for a graceful shutdown.
  170. </summary>
  171. </member>
  172. <member name="P:Microsoft.AspNetCore.Hosting.IApplicationLifetime.ApplicationStopping">
  173. <summary>
  174. Triggered when the application host is performing a graceful shutdown.
  175. Requests may still be in flight. Shutdown will block until this event completes.
  176. </summary>
  177. </member>
  178. <member name="P:Microsoft.AspNetCore.Hosting.IApplicationLifetime.ApplicationStopped">
  179. <summary>
  180. Triggered when the application host is performing a graceful shutdown.
  181. All requests should be complete at this point. Shutdown will block
  182. until this event completes.
  183. </summary>
  184. </member>
  185. <member name="M:Microsoft.AspNetCore.Hosting.IApplicationLifetime.StopApplication">
  186. <summary>
  187. Requests termination of the current application.
  188. </summary>
  189. </member>
  190. <member name="T:Microsoft.AspNetCore.Hosting.IHostingEnvironment">
  191. <summary>
  192. Provides information about the web hosting environment an application is running in.
  193. </summary>
  194. </member>
  195. <member name="P:Microsoft.AspNetCore.Hosting.IHostingEnvironment.EnvironmentName">
  196. <summary>
  197. Gets or sets the name of the environment. The host automatically sets this property to the value
  198. of the "ASPNETCORE_ENVIRONMENT" environment variable, or "environment" as specified in any other configuration source.
  199. </summary>
  200. </member>
  201. <member name="P:Microsoft.AspNetCore.Hosting.IHostingEnvironment.ApplicationName">
  202. <summary>
  203. Gets or sets the name of the application. This property is automatically set by the host to the assembly containing
  204. the application entry point.
  205. </summary>
  206. </member>
  207. <member name="P:Microsoft.AspNetCore.Hosting.IHostingEnvironment.WebRootPath">
  208. <summary>
  209. Gets or sets the absolute path to the directory that contains the web-servable application content files.
  210. </summary>
  211. </member>
  212. <member name="P:Microsoft.AspNetCore.Hosting.IHostingEnvironment.WebRootFileProvider">
  213. <summary>
  214. Gets or sets an <see cref="T:Microsoft.Extensions.FileProviders.IFileProvider"/> pointing at <see cref="P:Microsoft.AspNetCore.Hosting.IHostingEnvironment.WebRootPath"/>.
  215. </summary>
  216. </member>
  217. <member name="P:Microsoft.AspNetCore.Hosting.IHostingEnvironment.ContentRootPath">
  218. <summary>
  219. Gets or sets the absolute path to the directory that contains the application content files.
  220. </summary>
  221. </member>
  222. <member name="P:Microsoft.AspNetCore.Hosting.IHostingEnvironment.ContentRootFileProvider">
  223. <summary>
  224. Gets or sets an <see cref="T:Microsoft.Extensions.FileProviders.IFileProvider"/> pointing at <see cref="P:Microsoft.AspNetCore.Hosting.IHostingEnvironment.ContentRootPath"/>.
  225. </summary>
  226. </member>
  227. <member name="T:Microsoft.AspNetCore.Hosting.IHostingStartup">
  228. <summary>
  229. Represents platform specific configuration that will be applied to a <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/> when building an <see cref="T:Microsoft.AspNetCore.Hosting.IWebHost"/>.
  230. </summary>
  231. </member>
  232. <member name="M:Microsoft.AspNetCore.Hosting.IHostingStartup.Configure(Microsoft.AspNetCore.Hosting.IWebHostBuilder)">
  233. <summary>
  234. Configure the <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>.
  235. </summary>
  236. <remarks>
  237. Configure is intended to be called before user code, allowing a user to overwrite any changes made.
  238. </remarks>
  239. <param name="builder"></param>
  240. </member>
  241. <member name="T:Microsoft.AspNetCore.Hosting.Internal.IStartupConfigureContainerFilter`1">
  242. <summary>
  243. This API supports the ASP.NET Core infrastructure and is not intended to be used
  244. directly from your code. This API may change or be removed in future releases.
  245. </summary>
  246. </member>
  247. <member name="T:Microsoft.AspNetCore.Hosting.Internal.IStartupConfigureServicesFilter">
  248. <summary>
  249. This API supports the ASP.NET Core infrastructure and is not intended to be used
  250. directly from your code. This API may change or be removed in future releases.
  251. </summary>
  252. </member>
  253. <member name="T:Microsoft.AspNetCore.Hosting.IWebHost">
  254. <summary>
  255. Represents a configured web host.
  256. </summary>
  257. </member>
  258. <member name="P:Microsoft.AspNetCore.Hosting.IWebHost.ServerFeatures">
  259. <summary>
  260. The <see cref="T:Microsoft.AspNetCore.Http.Features.IFeatureCollection"/> exposed by the configured server.
  261. </summary>
  262. </member>
  263. <member name="P:Microsoft.AspNetCore.Hosting.IWebHost.Services">
  264. <summary>
  265. The <see cref="T:System.IServiceProvider"/> for the host.
  266. </summary>
  267. </member>
  268. <member name="M:Microsoft.AspNetCore.Hosting.IWebHost.Start">
  269. <summary>
  270. Starts listening on the configured addresses.
  271. </summary>
  272. </member>
  273. <member name="M:Microsoft.AspNetCore.Hosting.IWebHost.StartAsync(System.Threading.CancellationToken)">
  274. <summary>
  275. Starts listening on the configured addresses.
  276. </summary>
  277. </member>
  278. <member name="M:Microsoft.AspNetCore.Hosting.IWebHost.StopAsync(System.Threading.CancellationToken)">
  279. <summary>
  280. Attempt to gracefully stop the host.
  281. </summary>
  282. <param name="cancellationToken"></param>
  283. <returns></returns>
  284. </member>
  285. <member name="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder">
  286. <summary>
  287. A builder for <see cref="T:Microsoft.AspNetCore.Hosting.IWebHost"/>.
  288. </summary>
  289. </member>
  290. <member name="M:Microsoft.AspNetCore.Hosting.IWebHostBuilder.Build">
  291. <summary>
  292. Builds an <see cref="T:Microsoft.AspNetCore.Hosting.IWebHost"/> which hosts a web application.
  293. </summary>
  294. </member>
  295. <member name="M:Microsoft.AspNetCore.Hosting.IWebHostBuilder.ConfigureAppConfiguration(System.Action{Microsoft.AspNetCore.Hosting.WebHostBuilderContext,Microsoft.Extensions.Configuration.IConfigurationBuilder})">
  296. <summary>
  297. Adds a delegate for configuring the <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/> that will construct an <see cref="T:Microsoft.Extensions.Configuration.IConfiguration"/>.
  298. </summary>
  299. <param name="configureDelegate">The delegate for configuring the <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder" /> that will be used to construct an <see cref="T:Microsoft.Extensions.Configuration.IConfiguration" />.</param>
  300. <returns>The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>.</returns>
  301. <remarks>
  302. The <see cref="T:Microsoft.Extensions.Configuration.IConfiguration"/> and <see cref="T:Microsoft.Extensions.Logging.ILoggerFactory"/> on the <see cref="T:Microsoft.AspNetCore.Hosting.WebHostBuilderContext"/> are uninitialized at this stage.
  303. The <see cref="T:Microsoft.Extensions.Configuration.IConfigurationBuilder"/> is pre-populated with the settings of the <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>.
  304. </remarks>
  305. </member>
  306. <member name="M:Microsoft.AspNetCore.Hosting.IWebHostBuilder.ConfigureServices(System.Action{Microsoft.Extensions.DependencyInjection.IServiceCollection})">
  307. <summary>
  308. Adds a delegate for configuring additional services for the host or web application. This may be called
  309. multiple times.
  310. </summary>
  311. <param name="configureServices">A delegate for configuring the <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.</param>
  312. <returns>The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>.</returns>
  313. </member>
  314. <member name="M:Microsoft.AspNetCore.Hosting.IWebHostBuilder.ConfigureServices(System.Action{Microsoft.AspNetCore.Hosting.WebHostBuilderContext,Microsoft.Extensions.DependencyInjection.IServiceCollection})">
  315. <summary>
  316. Adds a delegate for configuring additional services for the host or web application. This may be called
  317. multiple times.
  318. </summary>
  319. <param name="configureServices">A delegate for configuring the <see cref="T:Microsoft.Extensions.DependencyInjection.IServiceCollection"/>.</param>
  320. <returns>The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>.</returns>
  321. </member>
  322. <member name="M:Microsoft.AspNetCore.Hosting.IWebHostBuilder.GetSetting(System.String)">
  323. <summary>
  324. Get the setting value from the configuration.
  325. </summary>
  326. <param name="key">The key of the setting to look up.</param>
  327. <returns>The value the setting currently contains.</returns>
  328. </member>
  329. <member name="M:Microsoft.AspNetCore.Hosting.IWebHostBuilder.UseSetting(System.String,System.String)">
  330. <summary>
  331. Add or replace a setting in the configuration.
  332. </summary>
  333. <param name="key">The key of the setting to add or replace.</param>
  334. <param name="value">The value of the setting to add or replace.</param>
  335. <returns>The <see cref="T:Microsoft.AspNetCore.Hosting.IWebHostBuilder"/>.</returns>
  336. </member>
  337. <member name="T:Microsoft.AspNetCore.Hosting.WebHostBuilderContext">
  338. <summary>
  339. Context containing the common services on the <see cref="T:Microsoft.AspNetCore.Hosting.IWebHost" />. Some properties may be null until set by the <see cref="T:Microsoft.AspNetCore.Hosting.IWebHost" />.
  340. </summary>
  341. </member>
  342. <member name="P:Microsoft.AspNetCore.Hosting.WebHostBuilderContext.HostingEnvironment">
  343. <summary>
  344. The <see cref="T:Microsoft.AspNetCore.Hosting.IHostingEnvironment" /> initialized by the <see cref="T:Microsoft.AspNetCore.Hosting.IWebHost" />.
  345. </summary>
  346. </member>
  347. <member name="P:Microsoft.AspNetCore.Hosting.WebHostBuilderContext.Configuration">
  348. <summary>
  349. The <see cref="T:Microsoft.Extensions.Configuration.IConfiguration" /> containing the merged configuration of the application and the <see cref="T:Microsoft.AspNetCore.Hosting.IWebHost" />.
  350. </summary>
  351. </member>
  352. </members>
  353. </doc>