10 references to Action
dotnet-svcutil-lib (10)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
675return channel.BeginCall(operation.Action, operation.IsOneWay, operation, ins, channel._operationTimeout, callback, asyncState);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (5)
180object result = channel.EndCall(operation.Action, Array.Empty<object>(), asyncResult); 222channel.EndCall(operation.Action, Array.Empty<object>(), asyncResult); 354object ret = _serviceChannel.BeginCall(operation.Action, operation.IsOneWay, operation, ins, callback, asyncState); 363object ret = _serviceChannel.EndCall(operation.Action, outs, result); 372object ret = _serviceChannel.Call(operation.Action, operation.IsOneWay, operation, ins, outs);
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (2)
549return _channel.BeginCall(op.Action, op.IsOneWay, op, ins, callback, state); 562object ret = _channel.EndCall(op.Action, outs, result);
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)));