次の方法で共有


MetricsCollection.Remove メソッド

定義

オーバーロード

Remove(Metric)

指定したメトリックをこのコレクションから削除します。

Remove(MetricIdentifier)

指定した ID を持つメトリックをこのコレクションから削除します。

Remove(MetricIdentifier, Metric)

指定した ID を持つメトリックをこのコレクションから削除します。

Remove(Metric)

指定したメトリックをこのコレクションから削除します。

public bool Remove (Microsoft.ApplicationInsights.Metric metric);
abstract member Remove : Microsoft.ApplicationInsights.Metric -> bool
override this.Remove : Microsoft.ApplicationInsights.Metric -> bool
Public Function Remove (metric As Metric) As Boolean

パラメーター

metric
Metric

メトリック。

戻り値

メトリックが見つかり、削除されたかどうか。

実装

適用対象

Remove(MetricIdentifier)

指定した ID を持つメトリックをこのコレクションから削除します。

public bool Remove (Microsoft.ApplicationInsights.Metrics.MetricIdentifier metricIdentifier);
member this.Remove : Microsoft.ApplicationInsights.Metrics.MetricIdentifier -> bool
Public Function Remove (metricIdentifier As MetricIdentifier) As Boolean

パラメーター

metricIdentifier
MetricIdentifier

メトリック識別子。

戻り値

メトリックが見つかり、削除されたかどうか。

適用対象

Remove(MetricIdentifier, Metric)

指定した ID を持つメトリックをこのコレクションから削除します。

public bool Remove (Microsoft.ApplicationInsights.Metrics.MetricIdentifier metricIdentifier, out Microsoft.ApplicationInsights.Metric removedMetric);
member this.Remove : Microsoft.ApplicationInsights.Metrics.MetricIdentifier * Metric -> bool
Public Function Remove (metricIdentifier As MetricIdentifier, ByRef removedMetric As Metric) As Boolean

パラメーター

metricIdentifier
MetricIdentifier

メトリック識別子。

removedMetric
Metric

削除されたメトリックまたは null

戻り値

メトリックが見つかり、削除されたかどうか。

適用対象