4 writes to _tags
System.Diagnostics.DiagnosticSource (4)
System\Diagnostics\Activity.cs (4)
491
if (_tags != null || Interlocked.CompareExchange(ref
_tags
, new TagsLinkedList(kvp), null) != null)
515
if (_tags != null || Interlocked.CompareExchange(ref
_tags
, new TagsLinkedList(kvp, set: true), null) != null)
1204
activity.
_tags
= new TagsLinkedList(enumerator);
1213
activity.
_tags
= new TagsLinkedList(samplerTags!);
10 references to _tags
System.Diagnostics.DiagnosticSource (10)
System\Diagnostics\Activity.cs (10)
339
get =>
_tags
?.EnumerateStringValues() ?? s_emptyBaggageTags;
348
get =>
_tags
?? s_emptyTagObjects;
414
public Enumerator<KeyValuePair<string, object?>> EnumerateTagObjects() => new Enumerator<KeyValuePair<string, object?>>(
_tags
?.First);
446
public object? GetTagItem(string key) =>
_tags
?.Get(key) ?? null;
491
if (
_tags
!= null || Interlocked.CompareExchange(ref _tags, new TagsLinkedList(kvp), null) != null)
493
_tags
.Add(kvp);
515
if (
_tags
!= null || Interlocked.CompareExchange(ref _tags, new TagsLinkedList(kvp, set: true), null) != null)
517
_tags
.Set(kvp);
1211
if (activity.
_tags
== null)
1217
activity.
_tags
.Add(samplerTags!);