4 references to IsOneWay
dotnet-svcutil-lib (4)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannel.cs (1)
675
return channel.BeginCall(operation.Action, operation.
IsOneWay
, operation, ins, channel._operationTimeout, callback, asyncState);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ServiceChannelProxy.cs (2)
354
object ret = _serviceChannel.BeginCall(operation.Action, operation.
IsOneWay
, operation, ins, callback, asyncState);
372
object ret = _serviceChannel.Call(operation.Action, operation.
IsOneWay
, operation, ins, outs);
FrameworkFork\System.ServiceModel\System\ServiceModel\ClientBase.cs (1)
549
return _channel.BeginCall(op.Action, op.
IsOneWay
, op, ins, callback, state);