1 implementation of Clone
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\StackWalk\Context\ContextHolder.cs (1)
51public IPlatformAgnosticContext Clone() => new ContextHolder<T>() { Context = Context };
7 references to Clone
Microsoft.Diagnostics.DataContractReader.Contracts (7)
Contracts\StackWalk\GC\GcScanner.cs (1)
476IPlatformAgnosticContext callerContext = context.Clone();
Contracts\StackWalk\StackWalk_1.cs (3)
130return new(Context.Clone(), State, FrameIter.CurrentFrameAddress, ThreadData, isResumable, isActiveFrame); 666IPlatformAgnosticContext callerContext = handle.Context.Clone(); 807IPlatformAgnosticContext parentContext = handle.Context.Clone();
Contracts\StackWalk\StackWalk_1.ExceptionHandling.cs (3)
49IPlatformAgnosticContext callerContext = handle.Context.Clone(); 73IPlatformAgnosticContext callerCallerContext = callerContext.Clone(); 145IPlatformAgnosticContext callerContext = handle.Context.Clone();