HostingEnvironmentExtensions.IsProduction(IHostingEnvironment) 方法

定义

检查当前主机环境名称是否为 Production。 此 API 不应在库中使用。有关详细信息,请参阅注解。

public:
[System::Runtime::CompilerServices::Extension]
 static bool IsProduction(Microsoft::Extensions::Hosting::IHostingEnvironment ^ hostingEnvironment);
public static bool IsProduction (this Microsoft.Extensions.Hosting.IHostingEnvironment hostingEnvironment);
static member IsProduction : Microsoft.Extensions.Hosting.IHostingEnvironment -> bool
<Extension()>
Public Function IsProduction (hostingEnvironment As IHostingEnvironment) As Boolean

参数

hostingEnvironment
IHostingEnvironment

IHostingEnvironment 的一个实例。

返回

如果环境名称为 Production,则为 true;否则为 false

注解

环境名称“Development”、“Production”和“Staging”作为应用程序开发人员的实用工具提供。 库作者应避免将特定行为与这些环境名称耦合。

适用于