5 writes to Request
dotnet-svcutil-lib (5)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
640MessageLogger.LogMessage(ref rpc.Request, (oneway ? MessageLoggingSource.ServiceLevelSendDatagram : MessageLoggingSource.ServiceLevelSendRequest) | MessageLoggingSource.LastChance);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ImmutableClientRuntime.cs (1)
123rpc.Correlation[offset + i] = _messageInspectors[i].BeforeSendRequest(ref rpc.Request, clientChannel);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ProxyOperationRuntime.cs (2)
242rpc.Request = _formatter.SerializeRequest(rpc.MessageVersion, rpc.InputParameters); 258rpc.Request = (Message)rpc.InputParameters[0];
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ProxyRpc.cs (1)
39this.Request = null;
19 references to Request
dotnet-svcutil-lib (19)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (17)
575AddMessageProperties(rpc.Request, context); 576if (!oneway && !ClientRuntime.ManualAddressing && rpc.Request.Version.Addressing != AddressingVersion.None) 578RequestReplyCorrelator.PrepareRequest(rpc.Request); 580MessageHeaders headers = rpc.Request.Headers; 597throw TraceUtility.ThrowHelperError(error, rpc.Request); 605throw TraceUtility.ThrowHelperError(error, rpc.Request); 617TraceUtility.SetActivity(rpc.Request, rpc.Activity); 620TraceUtility.AddActivityHeader(rpc.Request); 625TraceUtility.AddAmbientActivityToMessage(rpc.Request); 636TraceUtility.MessageFlowAtMessageSent(rpc.Request, rpc.EventTraceActivity); 648EventTraceActivity requestActivity = EventTraceActivityHelper.TryExtractActivity(rpc.Request); 652EventTraceActivityHelper.TryAttachActivity(rpc.Request, requestActivity); 761_binder.Send(rpc.Request, rpc.TimeoutHelper.RemainingTime()); 765rpc.Reply = _binder.Request(rpc.Request, rpc.TimeoutHelper.RemainingTime()); 960rpc.Request.Close(); 1808result = Rpc.Channel._binder.BeginSend(Rpc.Request, timeout, s_sendCallback, this); 1812result = Rpc.Channel._binder.BeginRequest(Rpc.Request, timeout, s_sendCallback, this);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ProxyOperationRuntime.cs (2)
259if (!IsValidAction(rpc.Request, Action)) 260throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(string.Format(SRServiceModel.SFxInvalidRequestAction, this.Name, rpc.Request.Headers.Action ?? "{NULL}", this.Action)));