We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7b25381 + 26039c8 commit 175ba63Copy full SHA for 175ba63
Src/StackifyLib/ProfileTracer.cs
@@ -1,4 +1,5 @@
1
using System;
2
+using System.Collections.Specialized;
3
using System.Runtime.CompilerServices;
4
using System.Threading.Tasks;
5
using StackifyLib.Utils;
@@ -203,6 +204,12 @@ public ProfileTracer IgnoreChildFrames(bool value = true)
203
204
return this;
205
}
206
207
+ [MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.NoInlining | MethodImplOptions.NoOptimization)]
208
+ public void ApplyDistributedHeaders(string traceparent,string tracestate)
209
+ {
210
+
211
+ }
212
213
//Method the profiler looks for
214
[MethodImpl(MethodImplOptions.PreserveSig | MethodImplOptions.NoInlining | MethodImplOptions.NoOptimization)]
215
private void ExecInternal2(string values, Action action)
0 commit comments