Skip to content
Open
Show file tree
Hide file tree
Changes from 22 commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
0289e93
Initial commit
jamescrosswell Jan 22, 2026
588beb3
.
jamescrosswell Jan 22, 2026
31fd5a0
Format code
getsentry-bot Jan 22, 2026
37254e4
Allow building against local instance of Sentry Java SDK
jamescrosswell Jan 22, 2026
79e9225
Fixed local maven references
jamescrosswell Jan 26, 2026
cabaa59
Fix issues building against local maven repository
jamescrosswell Jan 26, 2026
4cdf36c
Remove unecessary assignment of default converter
jamescrosswell Jan 27, 2026
d05cde3
Format code
getsentry-bot Jan 27, 2026
0b6c66c
Adding sample code temporarily
jamescrosswell Jan 27, 2026
96e9e26
Added custom breadcrumb converter to deal with the conversion between…
jamescrosswell Jan 28, 2026
c3a3889
Remove unecessary changes refactored to other PRs
jamescrosswell Jan 28, 2026
32b1b26
Remove changes refactored to #4873
jamescrosswell Jan 28, 2026
a40a7a0
Consolidate constants
jamescrosswell Jan 28, 2026
85d47f7
message handler tests
jamescrosswell Jan 28, 2026
e51db44
fixed test
jamescrosswell Jan 28, 2026
2c847fe
Added DotnetReplayBreadcrumbConverterTests
jamescrosswell Jan 29, 2026
6da450a
changelog
jamescrosswell Jan 29, 2026
e7b460b
Merge remote-tracking branch 'origin/main' into replay-network-spans
jamescrosswell Feb 1, 2026
9622e62
feat: Add network details for session replay on iOS
jamescrosswell Feb 3, 2026
b49f55d
Merge branch 'main' into ios-performance-spans
jamescrosswell Mar 17, 2026
b632782
Remove erroneous changelog entry
jamescrosswell Mar 17, 2026
b389d93
Merge remote-tracking branch 'origin/main' into ios-performance-spans
jamescrosswell Mar 22, 2026
d115e5c
Fix merge errors
jamescrosswell Mar 23, 2026
4ec6bae
Review feedback
jamescrosswell Mar 23, 2026
bb33532
Fix sample for iOS 26.0
jamescrosswell Mar 23, 2026
eb1828c
Added tests
jamescrosswell Mar 23, 2026
70ac898
Fix bug from seer review
jamescrosswell Mar 25, 2026
9e3f5f8
Make comment in sample more explicit
jamescrosswell Mar 25, 2026
43fd75b
Merge remote-tracking branch 'origin/main' into ios-performance-spans
jamescrosswell Mar 25, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions samples/Sentry.Samples.Maui/MainPage.xaml.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
using System.Globalization;
using Microsoft.Extensions.Logging;

namespace Sentry.Samples.Maui;
Expand Down
31 changes: 31 additions & 0 deletions src/Sentry/Platforms/Cocoa/Extensions/CocoaExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,37 @@
this IReadOnlyCollection<KeyValuePair<string, TValue>> dict) =>
dict.Count == 0 ? null : dict.ToNSDictionary();

public static NSDictionary<NSString, NSObject>? ToCocoaBreadcrumbData(
this IReadOnlyDictionary<string, string> source)
{
// Avoid an allocation if we can
if (source.Count == 0)
{
return null;
}

var dict = new NSDictionary<NSString, NSObject>();

foreach (var (key, value) in source)
{
// Cocoa Session Replay expects `request_start` to be a Date (`NSDate`).
// See https://github.com/getsentry/sentry-cocoa/blob/2b4e787e55558e1475eda8f98b02c19a0d511741/Sources/Swift/Integrations/SessionReplay/SentrySRDefaultBreadcrumbConverter.swift#L73
if (key == SentryHttpMessageHandler.RequestStartKey && TryParseUnixMs(value, out var unixMs))
{
var dto = DateTimeOffset.FromUnixTimeMilliseconds(unixMs);
dict[key] = dto.ToNSDate();
continue;
}

dict[key] = NSObject.FromObject(value);

Check failure on line 220 in src/Sentry/Platforms/Cocoa/Extensions/CocoaExtensions.cs

View check run for this annotation

@sentry/warden / warden: code-review

NSDictionary indexer assignment will throw runtime exception

The code creates an immutable `NSDictionary<NSString, NSObject>` on line 207 and then attempts to mutate it via indexer assignment on lines 216 and 220 (`dict[key] = ...`). In Cocoa, `NSDictionary` is immutable and does not support indexed assignment - this will throw a runtime exception. The existing code in this file correctly uses `NSDictionary.FromObjectsAndKeys()` with a temporary C# `Dictionary` (see lines 153-170) or `NSMutableDictionary` for mutation.
}

Check failure on line 221 in src/Sentry/Platforms/Cocoa/Extensions/CocoaExtensions.cs

View check run for this annotation

@sentry/warden / warden: find-bugs

NSDictionary indexer assignment will throw runtime exception

The new `ToCocoaBreadcrumbData` method creates an `NSDictionary<NSString, NSObject>()` and attempts to add entries using indexer assignment (`dict[key] = value`). However, `NSDictionary` in iOS/macOS is immutable and does not support setting values via indexer - this will throw a `NotSupportedException` at runtime. The existing methods in this file (e.g., `ToNSDictionary` at lines 153-170) correctly use a mutable .NET `Dictionary<NSString, NSObject>` to build the data and then convert it using `NSDictionary.FromObjectsAndKeys()` at the end.

return dict.Count == 0 ? null : dict;

static bool TryParseUnixMs(string value, out long unixMs) =>
long.TryParse(value, NumberStyles.Integer, CultureInfo.InvariantCulture, out unixMs);
}

/// <summary>
/// Converts an <see cref="NSNumber"/> to a .NET primitive data type and returns the result box in an <see cref="object"/>.
/// </summary>
Expand Down
9 changes: 7 additions & 2 deletions src/Sentry/SentryHttpMessageHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ public class SentryHttpMessageHandler : SentryMessageHandler
internal const string HttpClientOrigin = "auto.http.client";
internal const string HttpStartTimestampKey = "http.start_timestamp";
internal const string HttpEndTimestampKey = "http.end_timestamp";
internal const string RequestStartKey = "request_start";

/// <summary>
/// Constructs an instance of <see cref="SentryHttpMessageHandler"/>.
Expand Down Expand Up @@ -91,15 +92,19 @@ protected internal override void HandleResponse(HttpResponseMessage response, IS
{"method", method},
{"status_code", ((int) response.StatusCode).ToString()}
};
#if ANDROID
if (span is not null)
{
#if ANDROID
// Ensure the breadcrumb can be converted to RRWeb so that it shows up in the network tab in Session Replay.
// See https://github.com/getsentry/sentry-java/blob/94bff8dc0a952ad8c1b6815a9eda5005e41b92c7/sentry-android-replay/src/main/java/io/sentry/android/replay/DefaultReplayBreadcrumbConverter.kt#L195-L199
breadcrumbData[HttpStartTimestampKey] = span.StartTimestamp.ToUnixTimeMilliseconds().ToString("F0", CultureInfo.InvariantCulture);
breadcrumbData[HttpEndTimestampKey] = DateTimeOffset.UtcNow.ToUnixTimeMilliseconds().ToString("F0", CultureInfo.InvariantCulture);
}
#elif IOS || MACCATALYST
// Ensure the breadcrumb can be converted to RRWeb so that it shows up in the network tab in Session Replay.
// See https://github.com/getsentry/sentry-cocoa/blob/2b4e787e55558e1475eda8f98b02c19a0d511741/Sources/Swift/Integrations/SessionReplay/SentrySRDefaultBreadcrumbConverter.swift#L70-L86
breadcrumbData[RequestStartKey] = span.StartTimestamp.ToUnixTimeMilliseconds().ToString("F0", CultureInfo.InvariantCulture);
#endif
}
_hub.AddBreadcrumb(string.Empty, "http", "http", breadcrumbData);

// Create events for failed requests
Expand Down
75 changes: 67 additions & 8 deletions test/Sentry.Tests/SentryHttpMessageHandlerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -611,32 +611,91 @@
Assert.True(breadcrumbGenerated.Data.ContainsKey(statusKey));
Assert.Equal(expectedBreadcrumbData[statusKey], breadcrumbGenerated.Data[statusKey]);
}
#endif

#if ANDROID || IOS || MACCATALYST
[Fact]
public void Send_Executed_FailedRequestsCaptured()
public void HandleResponse_SpanExists_AddsReplayBreadcrumbData()
{
// Arrange
var scope = new Scope();
var hub = Substitute.For<IHub>();
var failedRequestHandler = Substitute.For<ISentryFailedRequestHandler>();
var options = new SentryOptions();
hub.SubstituteConfigureScope(scope);

var options = new SentryOptions
{
CaptureFailedRequests = false
};

var sut = new SentryHttpMessageHandler(hub, options);

var method = "GET";
var url = "https://localhost/";
var response = new HttpResponseMessage(HttpStatusCode.OK);

Check warning on line 635 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View check run for this annotation

@sentry/warden / warden: code-review

Synchronous Send_Executed_FailedRequestsCaptured test removed without replacement

The test `Send_Executed_FailedRequestsCaptured` that validates the failed request handler is invoked for synchronous HTTP calls has been removed. The async counterpart `SendAsync_Executed_FailedRequestsCaptured` (line 334) still exists. This reduces test coverage for the synchronous path, which is a deliberate feature of the handler (the file header comment notes all tests should cover both sync and async methods).
using var innerHandler = new FakeHttpMessageHandler();
using var sentryHandler = new SentryHttpMessageHandler(hub, options, innerHandler, failedRequestHandler);
using var client = new HttpClient(sentryHandler);
var span = Substitute.For<ISpan>();
span.StartTimestamp.Returns(DateTimeOffset.UtcNow.AddMilliseconds(-50));

// Act
client.Get(url);
sut.HandleResponse(response, span, method, url);

// Assert
failedRequestHandler.Received(1).HandleResponse(Arg.Any<HttpResponseMessage>());
var breadcrumb = scope.Breadcrumbs.First();
breadcrumb.Type.Should().Be("http");
breadcrumb.Category.Should().Be("http");

breadcrumb.Data.Should().NotBeNull();
#if ANDROID
breadcrumb.Data!.Should().ContainKey(SentryHttpMessageHandler.HttpStartTimestampKey);
breadcrumb.Data.Should().ContainKey(SentryHttpMessageHandler.HttpEndTimestampKey);

long.TryParse(breadcrumb.Data![SentryHttpMessageHandler.HttpStartTimestampKey], NumberStyles.Integer, CultureInfo.InvariantCulture, out var startMs)
.Should().BeTrue();
long.TryParse(breadcrumb.Data![SentryHttpMessageHandler.HttpEndTimestampKey], NumberStyles.Integer, CultureInfo.InvariantCulture, out var endMs)
.Should().BeTrue();
startMs.Should().BeGreaterThan(0);
startMs.Should().Be(span.StartTimestamp.ToUnixTimeMilliseconds());
endMs.Should().BeGreaterThan(0);
endMs.Should().BeGreaterOrEqualTo(startMs);
#elif IOS || MACCATALYST
breadcrumb.Data!.Should().ContainKey(SentryHttpMessageHandler.RequestStartKey);
long.TryParse(breadcrumb.Data![SentryHttpMessageHandler.RequestStartKey], NumberStyles.Integer, CultureInfo.InvariantCulture, out var startMs)
.Should().BeTrue();
startMs.Should().BeGreaterThan(0);
startMs.Should().Be(span.StartTimestamp.ToUnixTimeMilliseconds());
#endif
}

Check warning on line 667 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View check run for this annotation

@sentry/warden / warden: code-review

Duplicate test methods defined for ANDROID platform

The test method `HandleResponse_SpanExists_AddsReplayBreadcrumbData` is defined twice - once in the `#if ANDROID || IOS || MACCATALYST` block (lines 617-667) and again in the `#if ANDROID` block (lines 697-740). Similarly, `HandleResponse_NoSpanExists_NoReplayBreadcrumbData` is duplicated. When compiled for ANDROID, this will cause a compiler error due to duplicate method definitions.

[Fact]
public void HandleResponse_NoSpanExists_NoReplayBreadcrumbData()
{
// Arrange
var scope = new Scope();
var hub = Substitute.For<IHub>();
hub.SubstituteConfigureScope(scope);

var sut = new SentryHttpMessageHandler(hub, null);

var method = "GET";
var url = "https://localhost/";
var response = new HttpResponseMessage(HttpStatusCode.OK);

// Act
sut.HandleResponse(response, span: null, method, url);

// Assert
var breadcrumb = scope.Breadcrumbs.First();
breadcrumb.Data.Should().NotBeNull();
breadcrumb.Data!.Should().NotContainKey(SentryHttpMessageHandler.HttpStartTimestampKey);
breadcrumb.Data.Should().NotContainKey(SentryHttpMessageHandler.HttpEndTimestampKey);
breadcrumb.Data.Should().NotContainKey(SentryHttpMessageHandler.RequestStartKey);
}

Check failure on line 692 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View check run for this annotation

@sentry/warden / warden: find-bugs

Duplicate test method definitions will cause compilation error on Android

When the ANDROID preprocessor symbol is defined, both the `#if ANDROID || IOS || MACCATALYST` block (lines 616-694) and the `#if ANDROID` block (lines 696-765) will be compiled. This results in duplicate definitions of `HandleResponse_SpanExists_AddsReplayBreadcrumbData` and `HandleResponse_NoSpanExists_NoReplayBreadcrumbData` methods, which will cause a C# compilation error (CS0111: Type already defines a member with the same parameter types).

#endif

#if ANDROID
[Fact]
public void HandleResponse_SpanExists_AddsReplayBreadcrumbData()

Check failure on line 698 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / Build (net9.0)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_SpanExists_AddsReplayBreadcrumbData' with the same parameter types

Check failure on line 698 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / Build (net9.0)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_SpanExists_AddsReplayBreadcrumbData' with the same parameter types

Check failure on line 698 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / Build (net10.0)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_SpanExists_AddsReplayBreadcrumbData' with the same parameter types

Check failure on line 698 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / Build (net10.0)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_SpanExists_AddsReplayBreadcrumbData' with the same parameter types

Check failure on line 698 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (linux-x64)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_SpanExists_AddsReplayBreadcrumbData' with the same parameter types

Check failure on line 698 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (linux-x64)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_SpanExists_AddsReplayBreadcrumbData' with the same parameter types

Check failure on line 698 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (linux-x64)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_SpanExists_AddsReplayBreadcrumbData' with the same parameter types

Check failure on line 698 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (linux-x64)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_SpanExists_AddsReplayBreadcrumbData' with the same parameter types

Check failure on line 698 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (win-x64)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_SpanExists_AddsReplayBreadcrumbData' with the same parameter types

Check failure on line 698 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (win-x64)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_SpanExists_AddsReplayBreadcrumbData' with the same parameter types

Check failure on line 698 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (win-x64)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_SpanExists_AddsReplayBreadcrumbData' with the same parameter types

Check failure on line 698 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (win-x64)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_SpanExists_AddsReplayBreadcrumbData' with the same parameter types

Check failure on line 698 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (win-arm64)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_SpanExists_AddsReplayBreadcrumbData' with the same parameter types

Check failure on line 698 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (win-arm64)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_SpanExists_AddsReplayBreadcrumbData' with the same parameter types

Check failure on line 698 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (win-arm64)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_SpanExists_AddsReplayBreadcrumbData' with the same parameter types

Check failure on line 698 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (win-arm64)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_SpanExists_AddsReplayBreadcrumbData' with the same parameter types

Check failure on line 698 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (macos)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_SpanExists_AddsReplayBreadcrumbData' with the same parameter types

Check failure on line 698 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (macos)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_SpanExists_AddsReplayBreadcrumbData' with the same parameter types

Check failure on line 698 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (macos)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_SpanExists_AddsReplayBreadcrumbData' with the same parameter types

Check failure on line 698 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (macos)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_SpanExists_AddsReplayBreadcrumbData' with the same parameter types

Check failure on line 698 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / MSBuild

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_SpanExists_AddsReplayBreadcrumbData' with the same parameter types

Check failure on line 698 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / MSBuild

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_SpanExists_AddsReplayBreadcrumbData' with the same parameter types
{
// Arrange
var scope = new Scope();
Expand Down Expand Up @@ -681,7 +740,7 @@
}

[Fact]
public void HandleResponse_NoSpanExists_NoReplayBreadcrumbData()

Check failure on line 743 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / Build (net9.0)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_NoSpanExists_NoReplayBreadcrumbData' with the same parameter types

Check failure on line 743 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / Build (net9.0)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_NoSpanExists_NoReplayBreadcrumbData' with the same parameter types

Check failure on line 743 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / Build (net10.0)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_NoSpanExists_NoReplayBreadcrumbData' with the same parameter types

Check failure on line 743 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / Build (net10.0)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_NoSpanExists_NoReplayBreadcrumbData' with the same parameter types

Check failure on line 743 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (linux-x64)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_NoSpanExists_NoReplayBreadcrumbData' with the same parameter types

Check failure on line 743 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (linux-x64)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_NoSpanExists_NoReplayBreadcrumbData' with the same parameter types

Check failure on line 743 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (linux-x64)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_NoSpanExists_NoReplayBreadcrumbData' with the same parameter types

Check failure on line 743 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (linux-x64)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_NoSpanExists_NoReplayBreadcrumbData' with the same parameter types

Check failure on line 743 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (win-x64)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_NoSpanExists_NoReplayBreadcrumbData' with the same parameter types

Check failure on line 743 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (win-x64)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_NoSpanExists_NoReplayBreadcrumbData' with the same parameter types

Check failure on line 743 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (win-x64)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_NoSpanExists_NoReplayBreadcrumbData' with the same parameter types

Check failure on line 743 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (win-x64)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_NoSpanExists_NoReplayBreadcrumbData' with the same parameter types

Check failure on line 743 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (win-arm64)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_NoSpanExists_NoReplayBreadcrumbData' with the same parameter types

Check failure on line 743 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (win-arm64)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_NoSpanExists_NoReplayBreadcrumbData' with the same parameter types

Check failure on line 743 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (win-arm64)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_NoSpanExists_NoReplayBreadcrumbData' with the same parameter types

Check failure on line 743 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (win-arm64)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_NoSpanExists_NoReplayBreadcrumbData' with the same parameter types

Check failure on line 743 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (macos)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_NoSpanExists_NoReplayBreadcrumbData' with the same parameter types

Check failure on line 743 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (macos)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_NoSpanExists_NoReplayBreadcrumbData' with the same parameter types

Check failure on line 743 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (macos)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_NoSpanExists_NoReplayBreadcrumbData' with the same parameter types

Check failure on line 743 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / .NET (macos)

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_NoSpanExists_NoReplayBreadcrumbData' with the same parameter types

Check failure on line 743 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / MSBuild

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_NoSpanExists_NoReplayBreadcrumbData' with the same parameter types

Check failure on line 743 in test/Sentry.Tests/SentryHttpMessageHandlerTests.cs

View workflow job for this annotation

GitHub Actions / MSBuild

Type 'SentryHttpMessageHandlerTests' already defines a member called 'HandleResponse_NoSpanExists_NoReplayBreadcrumbData' with the same parameter types
{
// Arrange
var scope = new Scope();
Expand Down
Loading