Skip to content
This repository has been archived by the owner on Aug 30, 2023. It is now read-only.

Allow sending data to Sentry from custom error aggregator #198

Merged
merged 2 commits into from
Nov 23, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions src/app/SharpRaven/Data/ExceptionFrame.cs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public ExceptionFrame(StackFrame frame)
/// The function.
/// </value>
[JsonProperty(PropertyName = "function")]
public string Function { get; private set; }
public string Function { get; set; }

/// <summary>
/// Signifies whether this frame is related to the execution of the relevant code in this
Expand Down Expand Up @@ -151,7 +151,7 @@ public ExceptionFrame(StackFrame frame)
/// The module.
/// </value>
[JsonProperty(PropertyName = "module")]
public string Module { get; private set; }
public string Module { get; set; }

/// <summary>
/// Gets or sets the post context.
Expand Down
2 changes: 1 addition & 1 deletion src/app/SharpRaven/Data/Requester.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public partial class Requester
/// </summary>
/// <param name="packet">The <see cref="JsonPacket"/> to initialize with.</param>
/// <param name="ravenClient">The <see cref="RavenClient"/> to initialize with.</param>
internal Requester(JsonPacket packet, RavenClient ravenClient)
public Requester(JsonPacket packet, RavenClient ravenClient)
{
if (packet == null)
throw new ArgumentNullException("packet");
Expand Down