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