Implemented interface member:
method
Clone
System.ICloneable.Clone()
8 references to Clone
mscorlib (6)
system\runtime\remoting\callcontext.cs (1)
315public LogicalCallContext Clone() { return (LogicalCallContext)m_ctx.Clone(); }
system\runtime\remoting\remotingproxy.cs (3)
364cctx = (LogicalCallContext) cctx.Clone(); 378cctx = (LogicalCallContext) cctx.Clone(); 514Thread.CurrentThread.GetMutableExecutionContext().LogicalCallContext.Clone();
system\threading\executioncontext.cs (2)
1116ec.LogicalCallContext = (LogicalCallContext)this.LogicalCallContext.Clone(); 1153ec.LogicalCallContext = (LogicalCallContext)this.LogicalCallContext.Clone();
System.Workflow.Activities (2)
LocalService\MethodMessage.cs (2)
245return singletonCallContext.Clone() as LogicalCallContext; 337this.callContext = methodCallMessage.LogicalCallContext.Clone() as LogicalCallContext;