4 references to IsOneWay
dotnet-svcutil-lib (4)
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 (2)
354object ret = _serviceChannel.BeginCall(operation.Action, operation.IsOneWay, operation, ins, callback, asyncState); 372object ret = _serviceChannel.Call(operation.Action, operation.IsOneWay, operation, ins, outs);
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
549return _channel.BeginCall(op.Action, op.IsOneWay, op, ins, callback, state);