MeterScope Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This is used by InstrumentRule to distinguish between meters created via Meter constructors (Global) and those created via Dependency Injection with Create(MeterOptions) (Local)."/>.
This enumeration supports a bitwise combination of its member values.
public enum class MeterScope
[System.Flags]
public enum MeterScope
[<System.Flags>]
type MeterScope =
Public Enum MeterScope
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | No scope is specified. This should not be used. |
Global | 1 | |
Local | 2 | Indicates Meter instances created via Dependency Injection with Create(MeterOptions). |