Meter.CreateUpDownCounter Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Přetížení
CreateUpDownCounter<T>(String, String, String) |
Vytvořte objekt UpDownCounter metrik. |
CreateUpDownCounter<T>(String, String, String, IEnumerable<KeyValuePair<String,Object>>) |
Vytvořte objekt UpDownCounter metrik. |
CreateUpDownCounter<T>(String, String, String)
- Zdroj:
- Meter.cs
- Zdroj:
- Meter.cs
- Zdroj:
- Meter.cs
- Zdroj:
- Meter.cs
- Zdroj:
- Meter.cs
Vytvořte objekt UpDownCounter metrik.
public System.Diagnostics.Metrics.UpDownCounter<T> CreateUpDownCounter<T> (string name, string? unit = default, string? description = default) where T : struct;
member this.CreateUpDownCounter : string * string * string -> System.Diagnostics.Metrics.UpDownCounter<'T (requires 'T : struct)> (requires 'T : struct)
Public Function CreateUpDownCounter(Of T As Structure) (name As String, Optional unit As String = Nothing, Optional description As String = Nothing) As UpDownCounter(Of T)
Parametry typu
- T
Číselný typ měření.
Parametry
- name
- String
Název nástroje. Nemůže být null
.
- unit
- String
Volitelná přístrojová jednotka měření.
- description
- String
Volitelný popis nástroje.
Návraty
Nový čítač nahoru dolů.
Poznámky
UpDownCounter je nástroj, který podporuje hlášení kladných nebo záporných hodnot metrik. Příklad použití pro UpDownCounter: hlášení změn v aktivních požadavcích nebo velikosti fronty.
Platí pro
CreateUpDownCounter<T>(String, String, String, IEnumerable<KeyValuePair<String,Object>>)
- Zdroj:
- Meter.cs
- Zdroj:
- Meter.cs
- Zdroj:
- Meter.cs
- Zdroj:
- Meter.cs
Vytvořte objekt UpDownCounter metrik.
public:
generic <typename T>
where T : value class System::Diagnostics::Metrics::UpDownCounter<T> ^ CreateUpDownCounter(System::String ^ name, System::String ^ unit, System::String ^ description, System::Collections::Generic::IEnumerable<System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>> ^ tags);
public System.Diagnostics.Metrics.UpDownCounter<T> CreateUpDownCounter<T> (string name, string? unit, string? description, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,object?>> tags) where T : struct;
public System.Diagnostics.Metrics.UpDownCounter<T> CreateUpDownCounter<T> (string name, string? unit, string? description, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,object?>>? tags) where T : struct;
member this.CreateUpDownCounter : string * string * string * seq<System.Collections.Generic.KeyValuePair<string, obj>> -> System.Diagnostics.Metrics.UpDownCounter<'T (requires 'T : struct)> (requires 'T : struct)
Public Function CreateUpDownCounter(Of T As Structure) (name As String, unit As String, description As String, tags As IEnumerable(Of KeyValuePair(Of String, Object))) As UpDownCounter(Of T)
Parametry typu
- T
Číselný typ měření.
Parametry
- name
- String
Název nástroje. Nemůže být null
.
- unit
- String
Volitelná přístrojová jednotka měření.
- description
- String
Volitelný popis nástroje.
- tags
- IEnumerable<KeyValuePair<String,Object>>
značky pro připojení k čítači.
Návraty
Nový čítač nahoru dolů.
Poznámky
UpDownCounter je nástroj, který podporuje hlášení kladných nebo záporných hodnot metrik. Příklad použití pro UpDownCounter: hlášení změn v aktivních požadavcích nebo velikosti fronty.