共用方式為


IHostingEnvironment 介面

定義

警告

IHostingEnvironment has been deprecated. Use Microsoft.Extensions.Hosting.IHostEnvironment instead.

提供應用程式正在執行之主控環境的相關信息。

此類型已過時,未來版本將會移除。 建議的替代方法是 Microsoft.Extensions.Hosting.IHostEnvironment。

public interface class IHostingEnvironment
[System.Obsolete("IHostingEnvironment has been deprecated. Use Microsoft.Extensions.Hosting.IHostEnvironment instead.")]
public interface IHostingEnvironment
[<System.Obsolete("IHostingEnvironment has been deprecated. Use Microsoft.Extensions.Hosting.IHostEnvironment instead.")>]
type IHostingEnvironment = interface
Public Interface IHostingEnvironment
衍生
屬性

屬性

ApplicationName
已淘汰.

取得或設定應用程式的名稱。 主機會自動將此屬性設定為包含應用程式進入點的元件。

ContentRootFileProvider
已淘汰.

取得或設定指向 ContentRootPathIFileProvider

ContentRootPath
已淘汰.

取得或設定包含應用程式內容檔案之目錄的絕對路徑。

EnvironmentName
已淘汰.

取得或設定環境的名稱。 主機會自動將此屬性設定為組態中指定的 「environment」 索引鍵值。

擴充方法

IsDevelopment(IHostingEnvironment)
已淘汰.

檢查目前的載入環境名稱是否 Development。 此 API 不應用於連結庫,請參閱備註以取得詳細數據。

IsEnvironment(IHostingEnvironment, String)
已淘汰.

比較目前的裝載環境名稱與指定的值。 連結庫作者應避免使用此 API,請參閱備註以取得詳細數據。

IsProduction(IHostingEnvironment)
已淘汰.

檢查目前的載入環境名稱是否 Production。 此 API 不應用於連結庫,請參閱備註以取得詳細數據。

IsStaging(IHostingEnvironment)
已淘汰.

檢查目前的載入環境名稱是否 Staging。 此 API 不應用於連結庫,請參閱備註以取得詳細數據。

適用於