Added doc-comments to IHostingEnvironment
- Coherence-Signed#75
This commit is contained in:
parent
f0438d69eb
commit
5279786748
|
|
@ -5,14 +5,27 @@ using Microsoft.AspNet.FileProviders;
|
|||
|
||||
namespace Microsoft.AspNet.Hosting
|
||||
{
|
||||
/// <summary>
|
||||
/// Provides information about the web hosting environment an application is running in.
|
||||
/// </summary>
|
||||
public interface IHostingEnvironment
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the name of the environment. This property is automatically set by the host to the value
|
||||
/// of the <c>ASPNET_ENV</c> environment variable.
|
||||
/// </summary>
|
||||
// This must be settable!
|
||||
string EnvironmentName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the absolute path to the directory that contains the web-servable application content files.
|
||||
/// </summary>
|
||||
// This must be settable!
|
||||
string WebRootPath { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets an <see cref="IFileProvider"/> pointing at <see cref="WebRootPath"/>.
|
||||
/// </summary>
|
||||
// This must be settable!
|
||||
IFileProvider WebRootFileProvider { get; set; }
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue