Skip to content
Merged
Prev Previous commit
Next Next commit
Verify tests
  • Loading branch information
jamescrosswell committed Aug 26, 2024
commit d7b0ef79f7319e063b3deb366102bdd5442c7ca0
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ namespace Sentry
public System.TimeSpan ShutdownTimeout { get; set; }
public string SpotlightUrl { get; set; }
public Sentry.StackTraceMode StackTraceMode { get; set; }
public System.Collections.Generic.ICollection<Sentry.StringOrRegex> TagFilters { get; set; }
public System.Collections.Generic.IList<Sentry.StringOrRegex> TagFilters { get; set; }
public System.Collections.Generic.IList<Sentry.StringOrRegex> TracePropagationTargets { get; set; }
public double? TracesSampleRate { get; set; }
public System.Func<Sentry.TransactionSamplingContext, double?>? TracesSampler { get; set; }
Expand Down Expand Up @@ -1120,6 +1120,7 @@ namespace Sentry
public StreamAttachmentContent(System.IO.Stream stream) { }
public System.IO.Stream GetStream() { }
}
[System.ComponentModel.TypeConverter(typeof(Sentry.StringOrRegexTypeConverter))]
public class StringOrRegex
{
public StringOrRegex(string stringOrRegex) { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ namespace Sentry
public System.TimeSpan ShutdownTimeout { get; set; }
public string SpotlightUrl { get; set; }
public Sentry.StackTraceMode StackTraceMode { get; set; }
public System.Collections.Generic.ICollection<Sentry.StringOrRegex> TagFilters { get; set; }
public System.Collections.Generic.IList<Sentry.StringOrRegex> TagFilters { get; set; }
public System.Collections.Generic.IList<Sentry.StringOrRegex> TracePropagationTargets { get; set; }
public double? TracesSampleRate { get; set; }
public System.Func<Sentry.TransactionSamplingContext, double?>? TracesSampler { get; set; }
Expand Down Expand Up @@ -1120,6 +1120,7 @@ namespace Sentry
public StreamAttachmentContent(System.IO.Stream stream) { }
public System.IO.Stream GetStream() { }
}
[System.ComponentModel.TypeConverter(typeof(Sentry.StringOrRegexTypeConverter))]
public class StringOrRegex
{
public StringOrRegex(string stringOrRegex) { }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -700,7 +700,7 @@ namespace Sentry
public System.TimeSpan ShutdownTimeout { get; set; }
public string SpotlightUrl { get; set; }
public Sentry.StackTraceMode StackTraceMode { get; set; }
public System.Collections.Generic.ICollection<Sentry.StringOrRegex> TagFilters { get; set; }
public System.Collections.Generic.IList<Sentry.StringOrRegex> TagFilters { get; set; }
public System.Collections.Generic.IList<Sentry.StringOrRegex> TracePropagationTargets { get; set; }
public double? TracesSampleRate { get; set; }
public System.Func<Sentry.TransactionSamplingContext, double?>? TracesSampler { get; set; }
Expand Down Expand Up @@ -1122,6 +1122,7 @@ namespace Sentry
public StreamAttachmentContent(System.IO.Stream stream) { }
public System.IO.Stream GetStream() { }
}
[System.ComponentModel.TypeConverter(typeof(Sentry.StringOrRegexTypeConverter))]
public class StringOrRegex
{
public StringOrRegex(string stringOrRegex) { }
Expand Down
3 changes: 2 additions & 1 deletion test/Sentry.Tests/ApiApprovalTests.Run.Net4_8.verified.txt
Original file line number Diff line number Diff line change
Expand Up @@ -697,7 +697,7 @@ namespace Sentry
public System.TimeSpan ShutdownTimeout { get; set; }
public string SpotlightUrl { get; set; }
public Sentry.StackTraceMode StackTraceMode { get; set; }
public System.Collections.Generic.ICollection<Sentry.StringOrRegex> TagFilters { get; set; }
public System.Collections.Generic.IList<Sentry.StringOrRegex> TagFilters { get; set; }
public System.Collections.Generic.IList<Sentry.StringOrRegex> TracePropagationTargets { get; set; }
public double? TracesSampleRate { get; set; }
public System.Func<Sentry.TransactionSamplingContext, double?>? TracesSampler { get; set; }
Expand Down Expand Up @@ -1117,6 +1117,7 @@ namespace Sentry
public StreamAttachmentContent(System.IO.Stream stream) { }
public System.IO.Stream GetStream() { }
}
[System.ComponentModel.TypeConverter(typeof(Sentry.StringOrRegexTypeConverter))]
public class StringOrRegex
{
public StringOrRegex(string stringOrRegex) { }
Expand Down