다음을 통해 공유


CollectedMeasurement<T>.MatchesTags 메서드

정의

오버로드

MatchesTags(KeyValuePair<String,Object>[])

측정값에 특정 값이 있는 정확히 일치하는 태그 집합이 있는지 확인합니다.

MatchesTags(String[])

측정값에 값과 정확히 일치하는 태그 집합이 있는지 확인합니다.

MatchesTags(KeyValuePair<String,Object>[])

Source:
CollectedMeasurement.cs
Source:
CollectedMeasurement.cs
Source:
CollectedMeasurement.cs

측정값에 특정 값이 있는 정확히 일치하는 태그 집합이 있는지 확인합니다.

public:
 bool MatchesTags(... cli::array <System::Collections::Generic::KeyValuePair<System::String ^, System::Object ^>> ^ tags);
public bool MatchesTags (params System.Collections.Generic.KeyValuePair<string,object>[] tags);
member this.MatchesTags : System.Collections.Generic.KeyValuePair<string, obj>[] -> bool
Public Function MatchesTags (ParamArray tags As KeyValuePair(Of String, Object)()) As Boolean

매개 변수

tags
KeyValuePair<String,Object>[]

검사 태그 집합입니다.

반환

true 일치하는 값이 있는 측정값에 모든 태그가 있으면 이고, 그렇지 않으면 false입니다.

적용 대상

MatchesTags(String[])

Source:
CollectedMeasurement.cs
Source:
CollectedMeasurement.cs
Source:
CollectedMeasurement.cs

측정값에 값과 정확히 일치하는 태그 집합이 있는지 확인합니다.

public:
 bool MatchesTags(... cli::array <System::String ^> ^ tags);
public bool MatchesTags (params string[] tags);
member this.MatchesTags : string[] -> bool
Public Function MatchesTags (ParamArray tags As String()) As Boolean

매개 변수

tags
String[]

검사 태그 이름 집합입니다.

반환

true 모든 태그 이름이 측정값에 있으면 이고, 그렇지 않으면 false입니다.

적용 대상