4 references to IsOneWay
System.ServiceModel (4)
System\ServiceModel\Channels\ServiceChannel.cs (1)
733return channel.BeginCall(operation.Action, operation.IsOneWay, operation, ins, channel.operationTimeout, callback, asyncState);
System\ServiceModel\Channels\ServiceChannelProxy.cs (2)
342object ret = this.serviceChannel.BeginCall(operation.Action, operation.IsOneWay, operation, ins, callback, asyncState); 360object ret = this.serviceChannel.Call(operation.Action, operation.IsOneWay, operation, ins, outs);
System\ServiceModel\ClientBase.cs (1)
1138return this.channel.BeginCall(op.Action, op.IsOneWay, op, ins, callback, state);