4 references to IsOneWay
System.ServiceModel (4)
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 (2)
342
object ret = this.serviceChannel.BeginCall(operation.Action, operation.
IsOneWay
, operation, ins, callback, asyncState);
360
object ret = this.serviceChannel.Call(operation.Action, operation.
IsOneWay
, operation, ins, outs);
System\ServiceModel\ClientBase.cs (1)
1138
return this.channel.BeginCall(op.Action, op.
IsOneWay
, op, ins, callback, state);