4 writes to ParentSpanId
Aspire.Dashboard (2)
artifacts\obj\Aspire.Dashboard\Debug\net8.0\opentelemetry\proto\trace\v1\Trace.cs (2)
1449
ParentSpanId
= other.ParentSpanId;
1595
ParentSpanId
= input.ReadBytes();
Aspire.Dashboard.Components.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
162
ParentSpanId
= parentSpanId is null ? ByteString.Empty : ByteString.CopyFrom(Encoding.UTF8.GetBytes(parentSpanId)),
Aspire.Dashboard.Tests (1)
tests\Shared\Telemetry\TelemetryTestHelpers.cs (1)
162
ParentSpanId
= parentSpanId is null ? ByteString.Empty : ByteString.CopyFrom(Encoding.UTF8.GetBytes(parentSpanId)),
11 references to ParentSpanId
Aspire.Dashboard (11)
artifacts\obj\Aspire.Dashboard\Debug\net8.0\opentelemetry\proto\trace\v1\Trace.cs (10)
1214
if (
ParentSpanId
!= other.
ParentSpanId
) return false;
1236
if (
ParentSpanId
.Length != 0) hash ^=
ParentSpanId
.GetHashCode();
1339
if (
ParentSpanId
.Length != 0) {
1341
output.WriteBytes(
ParentSpanId
);
1397
if (
ParentSpanId
.Length != 0) {
1398
size += 1 + pb::CodedOutputStream.ComputeBytesSize(
ParentSpanId
);
1448
if (other.
ParentSpanId
.Length != 0) {
1449
ParentSpanId = other.
ParentSpanId
;
Otlp\Storage\TelemetryRepository.cs (1)
1190
ParentSpanId = span.
ParentSpanId
?.ToHexString(),