@@ -259,6 +259,8 @@ namespace Sentry
259259 System.Threading.Tasks.Task ConfigureScopeAsync(System.Func<Sentry.Scope, System.Threading.Tasks.Task> configureScope);
260260 System.IDisposable PushScope();
261261 System.IDisposable PushScope<TState>(TState state);
262+ void SetTag(string key, string value);
263+ void UnsetTag(string key);
262264 }
263265 public interface ISentryScopeStateProcessor
264266 {
@@ -863,12 +865,14 @@ namespace Sentry
863865 public static System.IDisposable PushScope() { }
864866 public static System.IDisposable PushScope<TState>(TState state) { }
865867 public static void ResumeSession() { }
868+ public static void SetTag(string key, string value) { }
866869 public static void StartSession() { }
867870 public static Sentry.ITransactionTracer StartTransaction(Sentry.ITransactionContext context) { }
868871 public static Sentry.ITransactionTracer StartTransaction(Sentry.ITransactionContext context, System.Collections.Generic.IReadOnlyDictionary<string, object?> customSamplingContext) { }
869872 public static Sentry.ITransactionTracer StartTransaction(string name, string operation) { }
870873 public static Sentry.ITransactionTracer StartTransaction(string name, string operation, Sentry.SentryTraceHeader traceHeader) { }
871874 public static Sentry.ITransactionTracer StartTransaction(string name, string operation, string? description) { }
875+ public static void UnsetTag(string key) { }
872876 }
873877 public class SentrySession : Sentry.ISentrySession
874878 {
@@ -1367,8 +1371,10 @@ namespace Sentry.Extensibility
13671371 public System.IDisposable PushScope() { }
13681372 public System.IDisposable PushScope<TState>(TState state) { }
13691373 public void ResumeSession() { }
1374+ public void SetTag(string key, string value) { }
13701375 public void StartSession() { }
13711376 public Sentry.ITransactionTracer StartTransaction(Sentry.ITransactionContext context, System.Collections.Generic.IReadOnlyDictionary<string, object?> customSamplingContext) { }
1377+ public void UnsetTag(string key) { }
13721378 }
13731379 public class FormRequestPayloadExtractor : Sentry.Extensibility.BaseRequestPayloadExtractor
13741380 {
@@ -1413,8 +1419,10 @@ namespace Sentry.Extensibility
14131419 public System.IDisposable PushScope() { }
14141420 public System.IDisposable PushScope<TState>(TState state) { }
14151421 public void ResumeSession() { }
1422+ public void SetTag(string key, string value) { }
14161423 public void StartSession() { }
14171424 public Sentry.ITransactionTracer StartTransaction(Sentry.ITransactionContext context, System.Collections.Generic.IReadOnlyDictionary<string, object?> customSamplingContext) { }
1425+ public void UnsetTag(string key) { }
14181426 }
14191427 public interface IBackgroundWorker
14201428 {
0 commit comments