Measurement<T> Konstruktory
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Przeciążenia
Measurement<T>(T) |
Inicjuje nowe wystąpienie Measurement<T> przy użyciu określonej wartości. |
Measurement<T>(T, IEnumerable<KeyValuePair<String,Object>>) |
Inicjuje nowe wystąpienie Measurement<T> przy użyciu określonej wartości i listy tagów. |
Measurement<T>(T, KeyValuePair<String,Object>[]) |
Inicjuje nowe wystąpienie Measurement<T> przy użyciu określonej wartości i listy tagów. |
Measurement<T>(T, TagList) | |
Measurement<T>(T, ReadOnlySpan<KeyValuePair<String,Object>>) |
Inicjuje nowe wystąpienie Measurement<T> przy użyciu określonej wartości i listy tagów. |
Measurement<T>(T)
- Źródło:
- Measurement.cs
- Źródło:
- Measurement.cs
- Źródło:
- Measurement.cs
Inicjuje nowe wystąpienie Measurement<T> przy użyciu określonej wartości.
public:
Measurement(T value);
public Measurement (T value);
new System.Diagnostics.Metrics.Measurement<'T (requires 'T : struct)> : 'T -> System.Diagnostics.Metrics.Measurement<'T (requires 'T : struct)>
Public Sub New (value As T)
Parametry
- value
- T
Wartość miary.
Dotyczy
Measurement<T>(T, IEnumerable<KeyValuePair<String,Object>>)
- Źródło:
- Measurement.cs
- Źródło:
- Measurement.cs
- Źródło:
- Measurement.cs
Inicjuje nowe wystąpienie Measurement<T> przy użyciu określonej wartości i listy tagów.
public:
Measurement(T value, System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>> ^ tags);
public Measurement (T value, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,object?>>? tags);
new System.Diagnostics.Metrics.Measurement<'T (requires 'T : struct)> : 'T * seq<System.Collections.Generic.KeyValuePair<string, obj>> -> System.Diagnostics.Metrics.Measurement<'T (requires 'T : struct)>
Public Sub New (value As T, tags As IEnumerable(Of KeyValuePair(Of String, Object)))
Parametry
- value
- T
Wartość miary.
- tags
- IEnumerable<KeyValuePair<String,Object>>
Lista tagów skojarzonych z miarą.
Dotyczy
Measurement<T>(T, KeyValuePair<String,Object>[])
- Źródło:
- Measurement.cs
- Źródło:
- Measurement.cs
- Źródło:
- Measurement.cs
Inicjuje nowe wystąpienie Measurement<T> przy użyciu określonej wartości i listy tagów.
public:
Measurement(T value, ... cli::array <System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>> ^ tags);
public Measurement (T value, params System.Collections.Generic.KeyValuePair<string,object>[]? tags);
new System.Diagnostics.Metrics.Measurement<'T (requires 'T : struct)> : 'T * System.Collections.Generic.KeyValuePair<string, obj>[] -> System.Diagnostics.Metrics.Measurement<'T (requires 'T : struct)>
Public Sub New (value As T, ParamArray tags As KeyValuePair(Of String, Object)())
Parametry
- value
- T
Wartość miary.
- tags
- KeyValuePair<String,Object>[]
Lista tagów skojarzonych z miarą.
Dotyczy
Measurement<T>(T, TagList)
public:
Measurement(T value, System::Diagnostics::TagList % tags);
public Measurement (T value, in System.Diagnostics.TagList tags);
new System.Diagnostics.Metrics.Measurement<'T (requires 'T : struct)> : 'T * TagList -> System.Diagnostics.Metrics.Measurement<'T (requires 'T : struct)>
Public Sub New (value As T, ByRef tags As TagList)
Parametry
- value
- T
- tags
- TagList
Dotyczy
Measurement<T>(T, ReadOnlySpan<KeyValuePair<String,Object>>)
- Źródło:
- Measurement.cs
- Źródło:
- Measurement.cs
- Źródło:
- Measurement.cs
Inicjuje nowe wystąpienie Measurement<T> przy użyciu określonej wartości i listy tagów.
public:
Measurement(T value, ReadOnlySpan<System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>> tags);
public Measurement (T value, ReadOnlySpan<System.Collections.Generic.KeyValuePair<string,object?>> tags);
public Measurement (T value, scoped ReadOnlySpan<System.Collections.Generic.KeyValuePair<string,object?>> tags);
new System.Diagnostics.Metrics.Measurement<'T (requires 'T : struct)> : 'T * ReadOnlySpan<System.Collections.Generic.KeyValuePair<string, obj>> -> System.Diagnostics.Metrics.Measurement<'T (requires 'T : struct)>
Public Sub New (value As T, tags As ReadOnlySpan(Of KeyValuePair(Of String, Object)))
Parametry
- value
- T
Wartość miary.
- tags
- ReadOnlySpan<KeyValuePair<String,Object>>
Lista tagów skojarzonych z miarą.