diff --git a/Directory.Packages.props b/Directory.Packages.props index 5540b83..aaf1acd 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -12,7 +12,7 @@ - + diff --git a/lib/Quizitor.Logging/WebHostBuilderExtensions.cs b/lib/Quizitor.Logging/WebHostBuilderExtensions.cs index 42feeaf..3b3411c 100644 --- a/lib/Quizitor.Logging/WebHostBuilderExtensions.cs +++ b/lib/Quizitor.Logging/WebHostBuilderExtensions.cs @@ -44,13 +44,7 @@ public SentryId CaptureEvent(SentryEvent evt, Scope? scope = null, SentryHint? h throw new NotImplementedException(); } - public void CaptureFeedback(SentryFeedback feedback, Scope? scope = null, SentryHint? hint = null) - { - throw new NotImplementedException(); - } - - [Obsolete("Obsolete")] - public void CaptureUserFeedback(UserFeedback userFeedback) + public SentryId CaptureFeedback(SentryFeedback feedback, out CaptureFeedbackResult result, Scope? scope = null, SentryHint? hint = null) { throw new NotImplementedException(); } @@ -153,6 +147,11 @@ public BaggageHeader GetBaggage() throw new NotImplementedException(); } + public W3CTraceparentHeader GetTraceparentHeader() + { + throw new NotImplementedException(); + } + public TransactionContext ContinueTrace(string? traceHeader, string? baggageHeader, string? name = null, string? operation = null) { throw new NotImplementedException(); @@ -194,7 +193,7 @@ public SentryId CaptureEvent(SentryEvent evt, SentryHint? hint, Action co throw new NotImplementedException(); } - public void CaptureFeedback(SentryFeedback feedback, Action configureScope, SentryHint? hint = null) + public SentryId CaptureFeedback(SentryFeedback feedback, out CaptureFeedbackResult result, Action configureScope, SentryHint? hint = null) { throw new NotImplementedException(); } @@ -204,5 +203,7 @@ public void CaptureFeedback(SentryFeedback feedback, Action configureScop [Experimental("SENTRY0001")] public SentryStructuredLogger Logger => throw new NotImplementedException(); + + public bool IsSessionActive => false; } } \ No newline at end of file