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