1 write to OperationContext
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\MessageRpc.cs (1)
89this.OperationContext = operationContext;
19 references to OperationContext
dotnet-svcutil-lib (19)
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ConcurrencyBehavior.cs (1)
99rpc.OperationContext.IsServiceReentrant = true;
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\DispatchOperationRuntime.cs (4)
306if ((rpc.ReturnParameter == null) && (rpc.OperationContext.RequestContext != null)) 338if (null != rpc.OperationContext.IncomingMessage && MessageState.Closed != rpc.OperationContext.IncomingMessage.State) 340FxTrace.Trace.SetAndTraceTransfer(TraceUtility.GetReceivedActivityId(rpc.OperationContext), true);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (4)
302RequestContext context = rpc.OperationContext.RequestContext; 379AddMessageProperties(rpc.Reply, rpc.OperationContext, rpc.Channel); 420rpc.OperationContext.RequestContext = null; 796rpc.OperationContext.FireOperationCompleted();
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\InstanceBehavior.cs (1)
58rpc.OperationContext.SetInstanceContext(rpc.InstanceContext);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\MessageRpc.cs (9)
183if (this.OperationContext.RequestContext != null) 185this.AbortRequestContext(this.OperationContext.RequestContext); 187if ((this.RequestContext != null) && (this.RequestContext != this.OperationContext.RequestContext)) 200if (this.OperationContext.RequestContext != null) 202this.DisposeRequestContext(this.OperationContext.RequestContext); 204if ((this.RequestContext != null) && (this.RequestContext != this.OperationContext.RequestContext)) 440contextHolder.Context = this.OperationContext; 447this.OperationContext.SetClientReply(null, false); 477this.OperationContext.ClearClientReplyNoThrow();