Measure Struct
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.
Represents a measure.
public value class Measure : IEquatable<Microsoft::Extensions::Diagnostics::Latency::Measure>
public readonly struct Measure : IEquatable<Microsoft.Extensions.Diagnostics.Latency.Measure>
type Measure = struct
Public Structure Measure
Implements IEquatable(Of Measure)
- Inheritance
- Implements
Remarks
Measures are used to aggregate or record values. They are used to track statistics about recurring operations. Example: number of calls to a database, or total latency of database calls.
Constructors
Measure(String, Int64) |
Initializes a new instance of the Measure struct. |
Properties
Name |
Gets the name of the measure. |
Value |
Gets the value of the measure. |
Methods
Equals(Measure) |
Determines whether this and a specified measure are identical. |
Equals(Object) |
Determines whether this and a specified object are identical. |
GetHashCode() |
Gets a hash code for this object. |
Operators
Equality(Measure, Measure) |
Equality operator. |
Inequality(Measure, Measure) |
Inequality operator. |