10 references to Action
System.ServiceModel (10)
System\ServiceModel\Channels\ServiceChannel.cs (1)
733
return channel.BeginCall(operation.
Action
, operation.IsOneWay, operation, ins, channel.operationTimeout, callback, asyncState);
System\ServiceModel\Channels\ServiceChannelProxy.cs (5)
261
channel.EndCall(operation.
Action
, ProxyOperationRuntime.EmptyArray, asyncResult);
280
return (T)channel.EndCall(operation.
Action
, ProxyOperationRuntime.EmptyArray, asyncResult);
342
object ret = this.serviceChannel.BeginCall(operation.
Action
, operation.IsOneWay, operation, ins, callback, asyncState);
351
object ret = this.serviceChannel.EndCall(operation.
Action
, outs, result);
360
object ret = this.serviceChannel.Call(operation.
Action
, operation.IsOneWay, operation, ins, outs);
System\ServiceModel\ClientBase.cs (2)
1138
return this.channel.BeginCall(op.
Action
, op.IsOneWay, op, ins, callback, state);
1154
object ret = this.channel.EndCall(op.
Action
, outs, result);
System\ServiceModel\Dispatcher\ProxyOperationRuntime.cs (2)
332
if (!IsValidAction(rpc.Request,
Action
))
333
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.SFxInvalidRequestAction, this.Name, rpc.Request.Headers.Action ?? "{NULL}", this.
Action
)));