HostingEnvironmentExtensions.IsEnvironment 方法

定义

将当前主机环境名称与指定的值进行比较。 库作者应避免使用此 API。有关详细信息,请参阅注解。

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

参数

hostingEnvironment
IHostingEnvironment

IHostingEnvironment 的一个实例。

environmentName
String

要对其进行验证的环境名称。

返回

如果指定的名称与当前环境相同,则为 true;否则为 false

注解

环境名称通常特定于应用程序。 设计用于许多不同应用程序的库应避免与特定环境名称的耦合行为。

适用于