Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
ExtractTraceIdAndState()
[1/2]
override
void
System.Diagnostics.LegacyPropagator.ExtractTraceIdAndState
(
object
carrier
,
PropagatorGetterCallback
getter
,
out
string
traceId
,
out
string
traceState
)
inline
Definition at line
41
of file
LegacyPropagator.cs
.
42
{
43
if
(getter ==
null
)
44
{
45
traceId
=
null
;
46
traceState
=
null
;
47
return
;
48
}
49
getter(
carrier
,
"traceparent"
,
out
traceId
,
out
var
fieldValues
);
50
if
(
traceId
==
null
)
51
{
52
getter(
carrier
,
"Request-Id"
,
out
traceId
,
out
fieldValues
);
53
}
54
getter(
carrier
,
"tracestate"
,
out
traceState
,
out
fieldValues
);
55
}
System.Collections.Generic.Dictionary
Definition
Dictionary.cs:14
System
Diagnostics
LegacyPropagator
Generated by
1.10.0