ResourceConsumptionAttribute 构造函数

定义

初始化 ResourceConsumptionAttribute 类的新实例。

重载

ResourceConsumptionAttribute(ResourceScope)

此 API 支持产品基础结构,不能在代码中直接使用。

初始化 ResourceConsumptionAttribute 类的新实例,并指定所用资源的范围。

ResourceConsumptionAttribute(ResourceScope, ResourceScope)

此 API 支持产品基础结构,不能在代码中直接使用。

初始化 ResourceConsumptionAttribute 类的新实例,并指定所用资源的范围及其实际使用范围。

ResourceConsumptionAttribute(ResourceScope)

Source:
ResourceConsumptionAttribute.cs
Source:
ResourceConsumptionAttribute.cs
Source:
ResourceConsumptionAttribute.cs

初始化 ResourceConsumptionAttribute 类的新实例,并指定所用资源的范围。

此 API 支持产品基础结构,不能在代码中直接使用。

public:
 ResourceConsumptionAttribute(System::Runtime::Versioning::ResourceScope resourceScope);
public ResourceConsumptionAttribute (System.Runtime.Versioning.ResourceScope resourceScope);
new System.Runtime.Versioning.ResourceConsumptionAttribute : System.Runtime.Versioning.ResourceScope -> System.Runtime.Versioning.ResourceConsumptionAttribute
Public Sub New (resourceScope As ResourceScope)

参数

resourceScope
ResourceScope

所用资源的 ResourceScope

适用于

ResourceConsumptionAttribute(ResourceScope, ResourceScope)

Source:
ResourceConsumptionAttribute.cs
Source:
ResourceConsumptionAttribute.cs
Source:
ResourceConsumptionAttribute.cs

初始化 ResourceConsumptionAttribute 类的新实例,并指定所用资源的范围及其实际使用范围。

此 API 支持产品基础结构,不能在代码中直接使用。

public:
 ResourceConsumptionAttribute(System::Runtime::Versioning::ResourceScope resourceScope, System::Runtime::Versioning::ResourceScope consumptionScope);
public ResourceConsumptionAttribute (System.Runtime.Versioning.ResourceScope resourceScope, System.Runtime.Versioning.ResourceScope consumptionScope);
new System.Runtime.Versioning.ResourceConsumptionAttribute : System.Runtime.Versioning.ResourceScope * System.Runtime.Versioning.ResourceScope -> System.Runtime.Versioning.ResourceConsumptionAttribute
Public Sub New (resourceScope As ResourceScope, consumptionScope As ResourceScope)

参数

resourceScope
ResourceScope

所用资源的 ResourceScope

consumptionScope
ResourceScope

此成员使用的 ResourceScope

注解

如果 特性 ResourceExposureAttribute 指定 范围, NoneResourceConsumptionAttribute 特性必须通过指定 consumptionScope 参数的值来指定它使用的资源及其使用方式。

指定的 consumptionScope 范围应小于或等于 指定的 resourceScope范围。 例如,Process范围可以作为 或 AppDomain 范围使用Process,但不能用作Machine范围。

适用于