diff --git a/src/Microsoft.AspNet.Hosting.Abstractions/IHostingEnvironment.cs b/src/Microsoft.AspNet.Hosting.Abstractions/IHostingEnvironment.cs index b57ae9a6af..e478c25a6b 100644 --- a/src/Microsoft.AspNet.Hosting.Abstractions/IHostingEnvironment.cs +++ b/src/Microsoft.AspNet.Hosting.Abstractions/IHostingEnvironment.cs @@ -5,14 +5,27 @@ using Microsoft.AspNet.FileProviders; namespace Microsoft.AspNet.Hosting { + /// + /// Provides information about the web hosting environment an application is running in. + /// public interface IHostingEnvironment { + /// + /// Gets or sets the name of the environment. This property is automatically set by the host to the value + /// of the ASPNET_ENV environment variable. + /// // This must be settable! string EnvironmentName { get; set; } + /// + /// Gets or sets the absolute path to the directory that contains the web-servable application content files. + /// // This must be settable! string WebRootPath { get; set; } + /// + /// Gets or sets an pointing at . + /// // This must be settable! IFileProvider WebRootFileProvider { get; set; } }