10 references to Action
dotnet-svcutil-lib (10)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
675
return channel.BeginCall(operation.
Action
, operation.IsOneWay, operation, ins, channel._operationTimeout, callback, asyncState);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (5)
180
object result = channel.EndCall(operation.
Action
, Array.Empty<object>(), asyncResult);
222
channel.EndCall(operation.
Action
, Array.Empty<object>(), asyncResult);
354
object ret = _serviceChannel.BeginCall(operation.
Action
, operation.IsOneWay, operation, ins, callback, asyncState);
363
object ret = _serviceChannel.EndCall(operation.
Action
, outs, result);
372
object ret = _serviceChannel.Call(operation.
Action
, operation.IsOneWay, operation, ins, outs);
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (2)
549
return _channel.BeginCall(op.
Action
, op.IsOneWay, op, ins, callback, state);
562
object ret = _channel.EndCall(op.
Action
, outs, result);
FrameworkFork\System.ServiceModel\System\ServiceModel\Dispatcher\ProxyOperationRuntime.cs (2)
259
if (!IsValidAction(rpc.Request,
Action
))
260
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(string.Format(SRServiceModel.SFxInvalidRequestAction, this.Name, rpc.Request.Headers.Action ?? "{NULL}", this.
Action
)));