Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
Changed from record to class
  • Loading branch information
jamescrosswell committed Jun 6, 2025
commit 0258492c75f41ab43d2a2f5798d87d0d7cb36eaa
2 changes: 1 addition & 1 deletion src/Sentry.Maui/BreadcrumbEvent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ namespace Sentry.Maui;
/// <summary>
/// Argument to the OnBreadcrumbCreateCallback
/// </summary>
public record BreadcrumbEvent
public sealed class BreadcrumbEvent
{
/// <summary>
/// The sender of the event, usually the control that triggered it.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Microsoft.Maui.Hosting
}
namespace Sentry.Maui
{
public class BreadcrumbEvent : System.IEquatable<Sentry.Maui.BreadcrumbEvent>
public sealed class BreadcrumbEvent
{
[System.Obsolete("Use the simpler constructor with params (string Key, string Value)[] extraData in" +
"stead.")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ namespace Microsoft.Maui.Hosting
}
namespace Sentry.Maui
{
public class BreadcrumbEvent : System.IEquatable<Sentry.Maui.BreadcrumbEvent>
public sealed class BreadcrumbEvent
{
[System.Obsolete("Use the simpler constructor with params (string Key, string Value)[] extraData in" +
"stead.")]
Expand Down
Loading