1 implementation of Clone
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\StackWalk\Context\ContextHolder.cs (1)
52public IPlatformAgnosticContext Clone() => new ContextHolder<T>() { Context = Context };
10 references to Clone
Microsoft.Diagnostics.DataContractReader.Contracts (10)
Contracts\StackWalk\GC\GcScanner.cs (1)
387IPlatformAgnosticContext callerContext = context.Clone();
Contracts\StackWalk\StackWalk_1.cs (6)
124return new(Context.Clone(), State, FrameIter.CurrentFrameAddress, ThreadData, isResumable, isActiveFrame, IsInterrupted, HasFaulted, isExceptionFrame); 152IPlatformAgnosticContext tmpContext = context.Clone(); 172IPlatformAgnosticContext tmpContext = context.Clone(); 816IPlatformAgnosticContext callerContext = handle.Context.Clone(); 1008IPlatformAgnosticContext parentContext = handle.Context.Clone(); 1118IPlatformAgnosticContext callerContext = handle.Context.Clone();
Contracts\StackWalk\StackWalk_1.ExceptionHandling.cs (3)
49IPlatformAgnosticContext callerContext = handle.Context.Clone(); 73IPlatformAgnosticContext callerCallerContext = callerContext.Clone(); 202IPlatformAgnosticContext callerContext = handle.Context.Clone();